mitreid-connect
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.mitre.uma.model.Claim クラス
org.mitre.uma.model.Claim 連携図
Collaboration graph

公開メンバ関数

Long getId ()
 
void setId (Long id)
 
String getName ()
 
void setName (String name)
 
String getFriendlyName ()
 
void setFriendlyName (String friendlyName)
 
String getClaimType ()
 
void setClaimType (String claimType)
 
Set< String > getClaimTokenFormat ()
 
void setClaimTokenFormat (Set< String > claimTokenFormat)
 
Set< String > getIssuer ()
 
void setIssuer (Set< String > issuer)
 
JsonElement getValue ()
 
void setValue (JsonElement value)
 
String toString ()
 
int hashCode ()
 
boolean equals (Object obj)
 

非公開変数類

Long id
 
String name
 
String friendlyName
 
String claimType
 
JsonElement value
 
Set< String > claimTokenFormat
 
Set< String > issuer
 

詳解

著者
jricher

関数詳解

◆ equals()

boolean org.mitre.uma.model.Claim.equals ( Object  obj)
inline
194  {
195  if (this == obj) {
196  return true;
197  }
198  if (obj == null) {
199  return false;
200  }
201  if (getClass() != obj.getClass()) {
202  return false;
203  }
204  Claim other = (Claim) obj;
205  if (claimTokenFormat == null) {
206  if (other.claimTokenFormat != null) {
207  return false;
208  }
209  } else if (!claimTokenFormat.equals(other.claimTokenFormat)) {
210  return false;
211  }
212  if (claimType == null) {
213  if (other.claimType != null) {
214  return false;
215  }
216  } else if (!claimType.equals(other.claimType)) {
217  return false;
218  }
219  if (friendlyName == null) {
220  if (other.friendlyName != null) {
221  return false;
222  }
223  } else if (!friendlyName.equals(other.friendlyName)) {
224  return false;
225  }
226  if (id == null) {
227  if (other.id != null) {
228  return false;
229  }
230  } else if (!id.equals(other.id)) {
231  return false;
232  }
233  if (issuer == null) {
234  if (other.issuer != null) {
235  return false;
236  }
237  } else if (!issuer.equals(other.issuer)) {
238  return false;
239  }
240  if (name == null) {
241  if (other.name != null) {
242  return false;
243  }
244  } else if (!name.equals(other.name)) {
245  return false;
246  }
247  if (value == null) {
248  if (other.value != null) {
249  return false;
250  }
251  } else if (!value.equals(other.value)) {
252  return false;
253  }
254  return true;
255  }
JsonElement value
Definition: Claim.java:50
String name
Definition: Claim.java:47
boolean equals(Object obj)
Definition: Claim.java:194
String claimType
Definition: Claim.java:49
Set< String > issuer
Definition: Claim.java:52
String friendlyName
Definition: Claim.java:48
Set< String > claimTokenFormat
Definition: Claim.java:51

◆ getClaimTokenFormat()

Set<String> org.mitre.uma.model.Claim.getClaimTokenFormat ( )
inline
戻り値
the claimTokenFormat
123  {
124  return claimTokenFormat;
125  }
Set< String > claimTokenFormat
Definition: Claim.java:51

◆ getClaimType()

String org.mitre.uma.model.Claim.getClaimType ( )
inline
戻り値
the claimType
104  {
105  return claimType;
106  }
String claimType
Definition: Claim.java:49

◆ getFriendlyName()

String org.mitre.uma.model.Claim.getFriendlyName ( )
inline
戻り値
the friendlyName
89  {
90  return friendlyName;
91  }
String friendlyName
Definition: Claim.java:48

◆ getId()

Long org.mitre.uma.model.Claim.getId ( )
inline
戻り値
the id
60  {
61  return id;
62  }
Long id
Definition: Claim.java:46

◆ getIssuer()

Set<String> org.mitre.uma.model.Claim.getIssuer ( )
inline
戻り値
the issuer
142  {
143  return issuer;
144  }
Set< String > issuer
Definition: Claim.java:52

◆ getName()

String org.mitre.uma.model.Claim.getName ( )
inline
戻り値
the name
74  {
75  return name;
76  }
String name
Definition: Claim.java:47

◆ getValue()

JsonElement org.mitre.uma.model.Claim.getValue ( )
inline
戻り値
the value
158  {
159  return value;
160  }
JsonElement value
Definition: Claim.java:50

◆ hashCode()

int org.mitre.uma.model.Claim.hashCode ( )
inline
178  {
179  final int prime = 31;
180  int result = 1;
181  result = prime * result + ((claimTokenFormat == null) ? 0 : claimTokenFormat.hashCode());
182  result = prime * result + ((claimType == null) ? 0 : claimType.hashCode());
183  result = prime * result + ((friendlyName == null) ? 0 : friendlyName.hashCode());
184  result = prime * result + ((id == null) ? 0 : id.hashCode());
185  result = prime * result + ((issuer == null) ? 0 : issuer.hashCode());
186  result = prime * result + ((name == null) ? 0 : name.hashCode());
187  result = prime * result + ((value == null) ? 0 : value.hashCode());
188  return result;
189  }
JsonElement value
Definition: Claim.java:50
String name
Definition: Claim.java:47
int hashCode()
Definition: Claim.java:178
String claimType
Definition: Claim.java:49
Set< String > issuer
Definition: Claim.java:52
String friendlyName
Definition: Claim.java:48
Set< String > claimTokenFormat
Definition: Claim.java:51

◆ setClaimTokenFormat()

void org.mitre.uma.model.Claim.setClaimTokenFormat ( Set< String >  claimTokenFormat)
inline
引数
claimTokenFormatthe claimTokenFormat to set
129  {
131  }
Set< String > claimTokenFormat
Definition: Claim.java:51

◆ setClaimType()

void org.mitre.uma.model.Claim.setClaimType ( String  claimType)
inline
引数
claimTypethe claimType to set
110  {
111  this.claimType = claimType;
112  }
String claimType
Definition: Claim.java:49

◆ setFriendlyName()

void org.mitre.uma.model.Claim.setFriendlyName ( String  friendlyName)
inline
引数
friendlyNamethe friendlyName to set
95  {
97  }
String friendlyName
Definition: Claim.java:48

◆ setId()

void org.mitre.uma.model.Claim.setId ( Long  id)
inline
引数
idthe id to set
66  {
67  this.id = id;
68  }
Long id
Definition: Claim.java:46

◆ setIssuer()

void org.mitre.uma.model.Claim.setIssuer ( Set< String >  issuer)
inline
引数
issuerthe issuer to set
148  {
149  this.issuer = issuer;
150  }
Set< String > issuer
Definition: Claim.java:52

◆ setName()

void org.mitre.uma.model.Claim.setName ( String  name)
inline
引数
namethe name to set
80  {
81  this.name = name;
82  }
String name
Definition: Claim.java:47

◆ setValue()

void org.mitre.uma.model.Claim.setValue ( JsonElement  value)
inline
引数
valuethe value to set
164  {
165  this.value = value;
166  }
JsonElement value
Definition: Claim.java:50

◆ toString()

String org.mitre.uma.model.Claim.toString ( )
inline
171  {
172  return "Claim [id=" + id + ", name=" + name + ", friendlyName=" + friendlyName + ", claimType=" + claimType + ", value=" + value + ", claimTokenFormat=" + claimTokenFormat + ", issuer=" + issuer + "]";
173  }
JsonElement value
Definition: Claim.java:50
String name
Definition: Claim.java:47
String claimType
Definition: Claim.java:49
Set< String > issuer
Definition: Claim.java:52
String friendlyName
Definition: Claim.java:48
Set< String > claimTokenFormat
Definition: Claim.java:51

メンバ詳解

◆ claimTokenFormat

Set<String> org.mitre.uma.model.Claim.claimTokenFormat
private

◆ claimType

String org.mitre.uma.model.Claim.claimType
private

◆ friendlyName

String org.mitre.uma.model.Claim.friendlyName
private

◆ id

Long org.mitre.uma.model.Claim.id
private

◆ issuer

Set<String> org.mitre.uma.model.Claim.issuer
private

◆ name

String org.mitre.uma.model.Claim.name
private

◆ value

JsonElement org.mitre.uma.model.Claim.value
private

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