aboutsummaryrefslogtreecommitdiff
path: root/src/uk/org/ury/config/Auth.java
diff options
context:
space:
mode:
authorNathan Lasseter <nathan.je.lasseter@googlemail.com>2011-02-20 13:43:01 +0000
committerNathan Lasseter <nathan.je.lasseter@googlemail.com>2011-02-20 13:43:01 +0000
commit904caa25f8de49cc20823a25ce8051dfdcae7c26 (patch)
tree65c174a386c7256e4ec784167bd23554e2c1217b /src/uk/org/ury/config/Auth.java
parentc8cb46d18ce2506e7da226b08c6521795b6e6173 (diff)
ConfigReader and some UI changes
Diffstat (limited to 'src/uk/org/ury/config/Auth.java')
-rw-r--r--src/uk/org/ury/config/Auth.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/uk/org/ury/config/Auth.java b/src/uk/org/ury/config/Auth.java
new file mode 100644
index 0000000..ff22c12
--- /dev/null
+++ b/src/uk/org/ury/config/Auth.java
@@ -0,0 +1,21 @@
+package uk.org.ury.config;
+
+import uk.org.ury.database.UserClass;
+
+public class Auth {
+
+ private String user;
+ private String pass;
+ private UserClass type;
+
+ public String getUser() { return user; }
+ public String getPass() { return pass; }
+ public UserClass getType() { return type; }
+
+ public Auth(String user, String pass, UserClass type) {
+ this.user = user;
+ this.pass = pass;
+ this.type = type;
+ }
+
+} \ No newline at end of file