diff options
| author | Nino Breuer | 2014-10-09 10:06:54 +0200 |
|---|---|---|
| committer | Nino Breuer | 2014-10-09 10:06:54 +0200 |
| commit | f62790c173b8e90e51c4b170ab4ee30865900e61 (patch) | |
| tree | 3eed331231789d9c5bb3d139d44f73808e59d7c4 /dozentenmodul/src/main/java/models/GUIRights.java | |
| parent | fg (diff) | |
| parent | Merge branch 'master' of ssh://git.openslx.org/openslx-ng/tutor-module (diff) | |
| download | tutor-module-f62790c173b8e90e51c4b170ab4ee30865900e61.tar.gz tutor-module-f62790c173b8e90e51c4b170ab4ee30865900e61.tar.xz tutor-module-f62790c173b8e90e51c4b170ab4ee30865900e61.zip | |
Merge branch 'master' of ssh://git.openslx.org/openslx-ng/tutor-module
Diffstat (limited to 'dozentenmodul/src/main/java/models/GUIRights.java')
| -rw-r--r-- | dozentenmodul/src/main/java/models/GUIRights.java | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/dozentenmodul/src/main/java/models/GUIRights.java b/dozentenmodul/src/main/java/models/GUIRights.java new file mode 100644 index 00000000..a1937b78 --- /dev/null +++ b/dozentenmodul/src/main/java/models/GUIRights.java @@ -0,0 +1,62 @@ +package models; + +public class GUIRights { + + private int read; + private int write; + private int changePermission; + private int admin; + private int linkAllowed; + private String userID; + + public String getUserID() { + return userID; + } + + public void setUserID(String userID) { + this.userID = userID; + } + + public static GUIRights rights = new GUIRights(); + + public int getRead() { + return read; + } + + public void setRead(int read) { + this.read = read; + } + + public int getWrite() { + return write; + } + + public void setWrite(int write) { + this.write = write; + } + + public int getChangePermission() { + return changePermission; + } + + public void setChangePermission(int changePermission) { + this.changePermission = changePermission; + } + + public int getAdmin() { + return admin; + } + + public void setAdmin(int admin) { + this.admin = admin; + } + + public int getLinkAllowed() { + return linkAllowed; + } + + public void setLinkAllowed(int linkAllowed) { + this.linkAllowed = linkAllowed; + } + +} |
