688d5ac8d5abf1059a8a5519f8a18e1402e139d3
[vamsas.git] / src / uk / ac / 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 uk.ac.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   /**
17    * @param fullName
18    * @param organization
19    */
20   public UserHandle(String fullName, String organization) {
21     this.fullName = fullName;
22     Organization = organization;
23   }
24   String fullName;
25   String Organization;
26   /**
27    * @return Returns the fullName.
28    */
29   public String getFullName() {
30     return fullName;
31   }
32   /**
33    * @param fullName The fullName to set.
34    */
35   public void setFullName(String fullname) {
36     fullName = fullname;
37   }
38   /**
39    * @return Returns the organization.
40    */
41   public String getOrganization() {
42     return Organization;
43   }
44   /**
45    * @param organization The organization to set.
46    */
47   public void setOrganization(String organization) {
48     Organization = organization;
49   }
50 }