diff options
| author | Jonathan Bauer | 2015-06-22 13:40:02 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2015-06-22 13:40:02 +0200 |
| commit | bb09d09546c00fe8b0c21d525af31c87097367d4 (patch) | |
| tree | 61fd648989bcde8ed32b3bf426870d9846e948cb /dozentenmodul/src/main/java/models/ImageRights.java | |
| parent | [server] Implement getOperatingSystems and getVirtualizers (diff) | |
| download | tutor-module-bb09d09546c00fe8b0c21d525af31c87097367d4.tar.gz tutor-module-bb09d09546c00fe8b0c21d525af31c87097367d4.tar.xz tutor-module-bb09d09546c00fe8b0c21d525af31c87097367d4.zip | |
[client] rebasing the whole app...
Diffstat (limited to 'dozentenmodul/src/main/java/models/ImageRights.java')
| -rw-r--r-- | dozentenmodul/src/main/java/models/ImageRights.java | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/dozentenmodul/src/main/java/models/ImageRights.java b/dozentenmodul/src/main/java/models/ImageRights.java deleted file mode 100644 index 71148359..00000000 --- a/dozentenmodul/src/main/java/models/ImageRights.java +++ /dev/null @@ -1,54 +0,0 @@ -package models; - -public class ImageRights { - - - private String userID; - private boolean read; - private boolean write; - private boolean changePermission; - private boolean admin; - private boolean linkAllowed; - - - public String getUserID() { - return userID; - } - public void setUserID(String userID) { - this.userID = userID; - } - public static ImageRights rights =new ImageRights(); - public boolean getRead() { - return read; - } - public void setRead(boolean read) { - this.read = read; - } - public boolean getWrite() { - return write; - } - public void setWrite(boolean write) { - this.write = write; - } - public boolean getChangePermission() { - return changePermission; - } - public void setChangePermission(boolean changePermission) { - this.changePermission = changePermission; - } - public boolean getAdmin() { - return admin; - } - public void setAdmin(boolean admin) { - this.admin = admin; - } - public boolean getLinkAllowed() { - return linkAllowed; - } - public void setLinkAllowed(boolean linkAllowed) { - this.linkAllowed = linkAllowed; - } - - - -} |
