refactored org to uk
[vamsas.git] / src / uk / ac / vamsas / client / UserHandle.java
diff --git a/src/uk/ac/vamsas/client/UserHandle.java b/src/uk/ac/vamsas/client/UserHandle.java
new file mode 100644 (file)
index 0000000..688d5ac
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+ * Created on 12-Sep-2005
+ *
+ * TODO To change the template for this generated file go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+package uk.ac.vamsas.client;
+
+/**
+ * Unique user identifier for a vamsas session. 
+ * Used to write user provenance information, and 
+ * track view/access control in multiuser sessions.
+ * @author jimp
+ */
+public class UserHandle {
+  /**
+   * @param fullName
+   * @param organization
+   */
+  public UserHandle(String fullName, String organization) {
+    this.fullName = fullName;
+    Organization = organization;
+  }
+  String fullName;
+  String Organization;
+  /**
+   * @return Returns the fullName.
+   */
+  public String getFullName() {
+    return fullName;
+  }
+  /**
+   * @param fullName The fullName to set.
+   */
+  public void setFullName(String fullname) {
+    fullName = fullname;
+  }
+  /**
+   * @return Returns the organization.
+   */
+  public String getOrganization() {
+    return Organization;
+  }
+  /**
+   * @param organization The organization to set.
+   */
+  public void setOrganization(String organization) {
+    Organization = organization;
+  }
+}