gluu
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.xdi.oxauth.model.ldap.Grant クラス
org.xdi.oxauth.model.ldap.Grant 連携図
Collaboration graph

公開メンバ関数

 Grant ()
 
String getDn ()
 
void setDn (String dn)
 
String getId ()
 
void setId (String id)
 
Date getCreationDate ()
 
void setCreationDate (Date creationDate)
 
boolean equals (Object o)
 
int hashCode ()
 

非公開変数類

String dn
 
String id
 
Date creationDate
 

詳解

著者
Javier Rojas Blum
バージョン
February 24, 2016

構築子と解体子

◆ Grant()

org.xdi.oxauth.model.ldap.Grant.Grant ( )
inline
25  {
26  }

関数詳解

◆ equals()

boolean org.xdi.oxauth.model.ldap.Grant.equals ( Object  o)
inline
53  {
54  if (this == o) return true;
55  if (o == null || getClass() != o.getClass()) return false;
56 
57  Grant grant = (Grant) o;
58 
59  if (!dn.equals(grant.dn)) return false;
60  if (!id.equals(grant.id)) return false;
61 
62  return true;
63  }
String dn
Definition: Grant.java:19
Grant()
Definition: Grant.java:25
boolean equals(Object o)
Definition: Grant.java:53

◆ getCreationDate()

Date org.xdi.oxauth.model.ldap.Grant.getCreationDate ( )
inline
44  {
45  return creationDate;
46  }
Date creationDate
Definition: Grant.java:23

◆ getDn()

String org.xdi.oxauth.model.ldap.Grant.getDn ( )
inline
28  {
29  return dn;
30  }
String dn
Definition: Grant.java:19

◆ getId()

String org.xdi.oxauth.model.ldap.Grant.getId ( )
inline
36  {
37  return id;
38  }
String id
Definition: Grant.java:21

◆ hashCode()

int org.xdi.oxauth.model.ldap.Grant.hashCode ( )
inline
66  {
67  int result = dn.hashCode();
68  result = 31 * result + id.hashCode();
69  return result;
70  }
String dn
Definition: Grant.java:19

◆ setCreationDate()

void org.xdi.oxauth.model.ldap.Grant.setCreationDate ( Date  creationDate)
inline
48  {
50  }
Date creationDate
Definition: Grant.java:23

◆ setDn()

void org.xdi.oxauth.model.ldap.Grant.setDn ( String  dn)
inline
32  {
33  this.dn = dn;
34  }
String dn
Definition: Grant.java:19

◆ setId()

void org.xdi.oxauth.model.ldap.Grant.setId ( String  id)
inline
40  {
41  this.id = id;
42  }
String id
Definition: Grant.java:21

メンバ詳解

◆ creationDate

Date org.xdi.oxauth.model.ldap.Grant.creationDate
private

◆ dn

String org.xdi.oxauth.model.ldap.Grant.dn
private

◆ id

String org.xdi.oxauth.model.ldap.Grant.id
private

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