blob: 1b7e0e553c44df8d0ab2271c7700d541e59e756d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package models;
public class ImageRights {
private int read;
private int write;
private int changePermission;
private int admin;
private int linkAllowed;
public static ImageRights rights =new ImageRights();
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;
}
}
|