19 package org.turro.security;
21 import java.util.HashMap;
31 private boolean readOnly, inherits;
32 private Map<String, String> denyiedRoles =
new HashMap<>();
47 this.inherits = inherits;
55 this.readOnly = readOnly;
63 this.denyiedRoles = denyiedRoles;
71 if (getClass() != obj.getClass()) {
75 if ((this.
id ==
null) ? (other.id !=
null) : !this.
id.
equals(other.id)) {
84 hash = 61 * hash + (this.
id !=
null ? this.
id.hashCode() : 0);
boolean equals(Object obj)
void setReadOnly(boolean readOnly)
Map< String, String > getDenyiedRoles()
void setInherits(boolean inherits)
void setDenyiedRoles(Map< String, String > denyiedRoles)