keycloak
公開メンバ関数 | 限定公開変数類 | 変数 | 非公開変数類 | 全メンバ一覧
org.keycloak.models.jpa.entities.UserConsentEntity クラス
org.keycloak.models.jpa.entities.UserConsentEntity 連携図
Collaboration graph

公開メンバ関数

String getId ()
 
void setId (String id)
 
UserEntity getUser ()
 
void setUser (UserEntity user)
 
Collection< UserConsentClientScopeEntitygetGrantedClientScopes ()
 
void setGrantedClientScopes (Collection< UserConsentClientScopeEntity > grantedClientScopes)
 
Long getCreatedDate ()
 
void setCreatedDate (Long createdDate)
 
Long getLastUpdatedDate ()
 
void setLastUpdatedDate (Long lastUpdatedDate)
 
String getClientId ()
 
void setClientId (String clientId)
 
String getClientStorageProvider ()
 
void setClientStorageProvider (String clientStorageProvider)
 
String getExternalClientId ()
 
void setExternalClientId (String externalClientId)
 
boolean equals (Object o)
 
int hashCode ()
 

限定公開変数類

String id
 
UserEntity user
 
String clientId
 
String clientStorageProvider
 
String externalClientId
 

変数

Collection< UserConsentClientScopeEntitygrantedClientScopes = new ArrayList<>()
 

非公開変数類

Long createdDate
 
Long lastUpdatedDate
 

詳解

著者
Marek Posolda

関数詳解

◆ equals()

boolean org.keycloak.models.jpa.entities.UserConsentEntity.equals ( Object  o)
inline
149  {
150  if (this == o) return true;
151  if (o == null) return false;
152  if (!(o instanceof UserConsentEntity)) return false;
153 
154  UserConsentEntity that = (UserConsentEntity) o;
155 
156  if (!id.equals(that.getId())) return false;
157 
158  return true;
159  }
boolean equals(Object o)
Definition: UserConsentEntity.java:149

◆ getClientId()

String org.keycloak.models.jpa.entities.UserConsentEntity.getClientId ( )
inline
124  {
125  return clientId;
126  }
String clientId
Definition: UserConsentEntity.java:67

◆ getClientStorageProvider()

String org.keycloak.models.jpa.entities.UserConsentEntity.getClientStorageProvider ( )
inline
132  {
133  return clientStorageProvider;
134  }
String clientStorageProvider
Definition: UserConsentEntity.java:70

◆ getCreatedDate()

Long org.keycloak.models.jpa.entities.UserConsentEntity.getCreatedDate ( )
inline
108  {
109  return createdDate;
110  }
Long createdDate
Definition: UserConsentEntity.java:79

◆ getExternalClientId()

String org.keycloak.models.jpa.entities.UserConsentEntity.getExternalClientId ( )
inline
140  {
141  return externalClientId;
142  }
String externalClientId
Definition: UserConsentEntity.java:73

◆ getGrantedClientScopes()

Collection<UserConsentClientScopeEntity> org.keycloak.models.jpa.entities.UserConsentEntity.getGrantedClientScopes ( )
inline
100  {
101  return grantedClientScopes;
102  }
Collection< UserConsentClientScopeEntity > grantedClientScopes
Definition: UserConsentEntity.java:76

◆ getId()

String org.keycloak.models.jpa.entities.UserConsentEntity.getId ( )
inline
84  {
85  return id;
86  }
String id
Definition: UserConsentEntity.java:60

◆ getLastUpdatedDate()

Long org.keycloak.models.jpa.entities.UserConsentEntity.getLastUpdatedDate ( )
inline
116  {
117  return lastUpdatedDate;
118  }
Long lastUpdatedDate
Definition: UserConsentEntity.java:82

◆ getUser()

UserEntity org.keycloak.models.jpa.entities.UserConsentEntity.getUser ( )
inline
92  {
93  return user;
94  }
UserEntity user
Definition: UserConsentEntity.java:64

◆ hashCode()

int org.keycloak.models.jpa.entities.UserConsentEntity.hashCode ( )
inline
162  {
163  return id.hashCode();
164  }

◆ setClientId()

void org.keycloak.models.jpa.entities.UserConsentEntity.setClientId ( String  clientId)
inline
128  {
129  this.clientId = clientId;
130  }
String clientId
Definition: UserConsentEntity.java:67

◆ setClientStorageProvider()

void org.keycloak.models.jpa.entities.UserConsentEntity.setClientStorageProvider ( String  clientStorageProvider)
inline
136  {
138  }
String clientStorageProvider
Definition: UserConsentEntity.java:70

◆ setCreatedDate()

void org.keycloak.models.jpa.entities.UserConsentEntity.setCreatedDate ( Long  createdDate)
inline
112  {
113  this.createdDate = createdDate;
114  }
Long createdDate
Definition: UserConsentEntity.java:79

◆ setExternalClientId()

void org.keycloak.models.jpa.entities.UserConsentEntity.setExternalClientId ( String  externalClientId)
inline
144  {
146  }
String externalClientId
Definition: UserConsentEntity.java:73

◆ setGrantedClientScopes()

void org.keycloak.models.jpa.entities.UserConsentEntity.setGrantedClientScopes ( Collection< UserConsentClientScopeEntity grantedClientScopes)
inline
104  {
106  }
Collection< UserConsentClientScopeEntity > grantedClientScopes
Definition: UserConsentEntity.java:76

◆ setId()

void org.keycloak.models.jpa.entities.UserConsentEntity.setId ( String  id)
inline
88  {
89  this.id = id;
90  }
String id
Definition: UserConsentEntity.java:60

◆ setLastUpdatedDate()

void org.keycloak.models.jpa.entities.UserConsentEntity.setLastUpdatedDate ( Long  lastUpdatedDate)
inline
120  {
122  }
Long lastUpdatedDate
Definition: UserConsentEntity.java:82

◆ setUser()

void org.keycloak.models.jpa.entities.UserConsentEntity.setUser ( UserEntity  user)
inline
96  {
97  this.user = user;
98  }
UserEntity user
Definition: UserConsentEntity.java:64

メンバ詳解

◆ clientId

String org.keycloak.models.jpa.entities.UserConsentEntity.clientId
protected

◆ clientStorageProvider

String org.keycloak.models.jpa.entities.UserConsentEntity.clientStorageProvider
protected

◆ createdDate

Long org.keycloak.models.jpa.entities.UserConsentEntity.createdDate
private

◆ externalClientId

String org.keycloak.models.jpa.entities.UserConsentEntity.externalClientId
protected

◆ grantedClientScopes

Collection<UserConsentClientScopeEntity> org.keycloak.models.jpa.entities.UserConsentEntity.grantedClientScopes = new ArrayList<>()
package

◆ id

String org.keycloak.models.jpa.entities.UserConsentEntity.id
protected

◆ lastUpdatedDate

Long org.keycloak.models.jpa.entities.UserConsentEntity.lastUpdatedDate
private

◆ user

UserEntity org.keycloak.models.jpa.entities.UserConsentEntity.user
protected

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