Projekt

Obecné

Profil

Stáhnout (371 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 b2af5445 Jakub Šmíd
package premission;
2
3
import lombok.Data;
4
5
/**
6
 * Permission DTO
7
 */
8
@Data
9
public class PermissionDto {
10
    /**
11
     * Whether user has 'READ' authority
12
     */
13
    private boolean canRead;
14
15
    /**
16
     * Whether user has 'WRITE' authority
17
     */
18
    private boolean canWrite;
19
20
    /**
21
     * Whether user has 'DELETE' authority
22
     */
23
    private boolean canDelete;
24
}