BrightSide Workbench Full Report + Source Code
org.turro.security.AllowedGroup Class Reference

Public Member Functions

String getId ()
 
void setId (String id)
 
boolean isInherits ()
 
void setInherits (boolean inherits)
 
boolean isReadOnly ()
 
void setReadOnly (boolean readOnly)
 
Map< String, String > getDenyiedRoles ()
 
void setDenyiedRoles (Map< String, String > denyiedRoles)
 
boolean equals (Object obj)
 
int hashCode ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 28 of file AllowedGroup.java.

Member Function Documentation

◆ equals()

boolean org.turro.security.AllowedGroup.equals ( Object  obj)

Definition at line 67 of file AllowedGroup.java.

67  {
68  if (obj == null) {
69  return false;
70  }
71  if (getClass() != obj.getClass()) {
72  return false;
73  }
74  final AllowedGroup other = (AllowedGroup) obj;
75  if ((this.id == null) ? (other.id != null) : !this.id.equals(other.id)) {
76  return false;
77  }
78  return true;
79  }

◆ getDenyiedRoles()

Map<String, String> org.turro.security.AllowedGroup.getDenyiedRoles ( )

Definition at line 58 of file AllowedGroup.java.

58  {
59  return denyiedRoles;
60  }

◆ getId()

String org.turro.security.AllowedGroup.getId ( )

Definition at line 34 of file AllowedGroup.java.

34  {
35  return id;
36  }

◆ hashCode()

int org.turro.security.AllowedGroup.hashCode ( )

Definition at line 82 of file AllowedGroup.java.

82  {
83  int hash = 7;
84  hash = 61 * hash + (this.id != null ? this.id.hashCode() : 0);
85  return hash;
86  }

◆ isInherits()

boolean org.turro.security.AllowedGroup.isInherits ( )

Definition at line 42 of file AllowedGroup.java.

42  {
43  return inherits;
44  }

◆ isReadOnly()

boolean org.turro.security.AllowedGroup.isReadOnly ( )

Definition at line 50 of file AllowedGroup.java.

50  {
51  return readOnly;
52  }

◆ setDenyiedRoles()

void org.turro.security.AllowedGroup.setDenyiedRoles ( Map< String, String >  denyiedRoles)

Definition at line 62 of file AllowedGroup.java.

62  {
63  this.denyiedRoles = denyiedRoles;
64  }

◆ setId()

void org.turro.security.AllowedGroup.setId ( String  id)

Definition at line 38 of file AllowedGroup.java.

38  {
39  this.id = id;
40  }

◆ setInherits()

void org.turro.security.AllowedGroup.setInherits ( boolean  inherits)

Definition at line 46 of file AllowedGroup.java.

46  {
47  this.inherits = inherits;
48  }

◆ setReadOnly()

void org.turro.security.AllowedGroup.setReadOnly ( boolean  readOnly)

Definition at line 54 of file AllowedGroup.java.

54  {
55  this.readOnly = readOnly;
56  }

The documentation for this class was generated from the following file: