gluu
クラス | 公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.gluu.oxtrust.model.scim2.user.Group クラス
org.gluu.oxtrust.model.scim2.user.Group 連携図
Collaboration graph

クラス

enum  Type
 

公開メンバ関数

String getValue ()
 
void setValue (String value)
 
String getRef ()
 
void setRef (String ref)
 
String getDisplay ()
 
void setDisplay (String display)
 
String getType ()
 
void setType (String type)
 
void setType (Type type)
 
int hashCode ()
 
boolean equals (Object obj)
 

非公開変数類

String value
 
String ref
 
String display
 
String type
 

詳解

Represents a group to which a user belongs. See section 4.1.2 of RFC 7643.


クラス詳解

◆ org::gluu::oxtrust::model::scim2::user::Group::Type

enum org::gluu::oxtrust::model::scim2::user::Group::Type
org.gluu.oxtrust.model.scim2.user.Group.Type 連携図
Collaboration graph
列挙値
DIRECT
INDIRECT

関数詳解

◆ equals()

boolean org.gluu.oxtrust.model.scim2.user.Group.equals ( Object  obj)
inline
96  {
97  if (this == obj) {
98  return true;
99  }
100  if (obj == null) {
101  return false;
102  }
103  if (getClass() != obj.getClass()) {
104  return false;
105  }
106  Group other = (Group) obj;
107  if (value == null) {
108  if (other.value != null) {
109  return false;
110  }
111  } else if (!value.equals(other.value)) {
112  return false;
113  }
114  if (ref == null) {
115  if (other.ref != null) {
116  return false;
117  }
118  } else if (!ref.equals(other.ref)) {
119  return false;
120  }
121  if (type == null) {
122  if (other.type != null) {
123  return false;
124  }
125  } else if (!type.equals(other.type)) {
126  return false;
127  }
128  if (display == null) {
129  if (other.display != null) {
130  return false;
131  }
132  } else if (!display.equals(other.display)) {
133  return false;
134  }
135  return true;
136  }
String ref
Definition: Group.java:36
String display
Definition: Group.java:40
String type
Definition: Group.java:45
String value
Definition: Group.java:29

◆ getDisplay()

String org.gluu.oxtrust.model.scim2.user.Group.getDisplay ( )
inline
63  {
64  return display;
65  }
String display
Definition: Group.java:40

◆ getRef()

String org.gluu.oxtrust.model.scim2.user.Group.getRef ( )
inline
55  {
56  return ref;
57  }
String ref
Definition: Group.java:36

◆ getType()

String org.gluu.oxtrust.model.scim2.user.Group.getType ( )
inline
71  {
72  return type;
73  }
String type
Definition: Group.java:45

◆ getValue()

String org.gluu.oxtrust.model.scim2.user.Group.getValue ( )
inline
47  {
48  return value;
49  }
String value
Definition: Group.java:29

◆ hashCode()

int org.gluu.oxtrust.model.scim2.user.Group.hashCode ( )
inline
85  {
86  final int prime = 31;
87  int result = 1;
88  result = prime * result + ((value == null) ? 0 : value.hashCode());
89  result = prime * result + ((ref == null) ? 0 : ref.hashCode());
90  result = prime * result + ((type == null) ? 0 : type.hashCode());
91  result = prime * result + ((display == null) ? 0 : display.hashCode());
92  return result;
93  }
String ref
Definition: Group.java:36
String display
Definition: Group.java:40
String type
Definition: Group.java:45
String value
Definition: Group.java:29

◆ setDisplay()

void org.gluu.oxtrust.model.scim2.user.Group.setDisplay ( String  display)
inline
67  {
68  this.display = display;
69  }
String display
Definition: Group.java:40

◆ setRef()

void org.gluu.oxtrust.model.scim2.user.Group.setRef ( String  ref)
inline
59  {
60  this.ref = ref;
61  }
String ref
Definition: Group.java:36

◆ setType() [1/2]

void org.gluu.oxtrust.model.scim2.user.Group.setType ( String  type)
inline
76  {
77  this.type = type;
78  }
String type
Definition: Group.java:45

◆ setType() [2/2]

void org.gluu.oxtrust.model.scim2.user.Group.setType ( Type  type)
inline
80  {
81  setType(type.name().toLowerCase());
82  }
void setType(String type)
Definition: Group.java:76
String type
Definition: Group.java:45

◆ setValue()

void org.gluu.oxtrust.model.scim2.user.Group.setValue ( String  value)
inline
51  {
52  this.value = value;
53  }
String value
Definition: Group.java:29

メンバ詳解

◆ display

String org.gluu.oxtrust.model.scim2.user.Group.display
private

◆ ref

String org.gluu.oxtrust.model.scim2.user.Group.ref
private

◆ type

String org.gluu.oxtrust.model.scim2.user.Group.type
private

◆ value

String org.gluu.oxtrust.model.scim2.user.Group.value
private

このクラス詳解は次のファイルから抽出されました: