first version sent out to Iain and Pierre
[vamsas.git] / src / org / vamsas / client / UserHandle.java
1 /*
2  * Created on 12-Sep-2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */
7 package org.vamsas.client;
8
9 /**
10  * Unique user identifier for a vamsas session. 
11  * Used to write user provenance information, and 
12  * track view/access control in multiuser sessions.
13  * @author jimp
14  */
15 public class UserHandle {
16   String fullName;
17   String Organization;
18   /**
19    * @return Returns the fullName.
20    */
21   public String getFullName() {
22     return fullName;
23   }
24   /**
25    * @param fullName The fullName to set.
26    */
27   public void setFullName(String fullname) {
28     fullName = fullname;
29   }
30   /**
31    * @return Returns the organization.
32    */
33   public String getOrganization() {
34     return Organization;
35   }
36   /**
37    * @param organization The organization to set.
38    */
39   public void setOrganization(String organization) {
40     Organization = organization;
41   }
42 }