2 * Created on 12-Sep-2005
4 * TODO To change the template for this generated file go to
5 * Window - Preferences - Java - Code Style - Code Templates
7 package uk.ac.vamsas.client;
10 * Unique user identifier for a vamsas session.
11 * Used to write user provenance information, and
12 * track view/access control in multiuser sessions.
15 public class UserHandle {
20 public UserHandle(String fullName, String organization) {
21 this.fullName = fullName;
22 Organization = organization;
27 * @return Returns the fullName.
29 public String getFullName() {
33 * @param fullName The fullName to set.
35 public void setFullName(String fullname) {
39 * @return Returns the organization.
41 public String getOrganization() {
45 * @param organization The organization to set.
47 public void setOrganization(String organization) {
48 Organization = organization;