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

クラス

class  Key
 

公開メンバ関数

ClientScopeEntity getClientScope ()
 
void setClientScope (ClientScopeEntity clientScope)
 
ClientEntity getClient ()
 
void setClient (ClientEntity client)
 
boolean isDefaultScope ()
 
void setDefaultScope (boolean defaultScope)
 
boolean equals (Object o)
 
int hashCode ()
 

限定公開変数類

ClientScopeEntity clientScope
 
ClientEntity client
 
boolean defaultScope
 

詳解

Binding between client and clientScope

著者
Marek Posolda

関数詳解

◆ equals()

boolean org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.equals ( Object  o)
inline
129  {
130  if (this == o) return true;
131  if (o == null || getClass() != o.getClass()) return false;
132  if (!(o instanceof ClientScopeClientMappingEntity)) return false;
133 
134  ClientScopeClientMappingEntity key = (ClientScopeClientMappingEntity) o;
135 
136  if (clientScope != null ? !clientScope.getId().equals(key.clientScope != null ? key.clientScope.getId() : null) : key.clientScope != null) return false;
137  if (client != null ? !client.getId().equals(key.client != null ? key.client.getId() : null) : key.client != null) return false;
138 
139  return true;
140  }
ClientEntity client
Definition: ClientScopeClientMappingEntity.java:56
String getId()
Definition: ClientScopeEntity.java:83
String getId()
Definition: ClientEntity.java:177
ClientScopeEntity clientScope
Definition: ClientScopeClientMappingEntity.java:51

◆ getClient()

ClientEntity org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.getClient ( )
inline
69  {
70  return client;
71  }
ClientEntity client
Definition: ClientScopeClientMappingEntity.java:56

◆ getClientScope()

ClientScopeEntity org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.getClientScope ( )
inline
61  {
62  return clientScope;
63  }
ClientScopeEntity clientScope
Definition: ClientScopeClientMappingEntity.java:51

◆ hashCode()

int org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.hashCode ( )
inline
143  {
144  int result = clientScope != null ? clientScope.getId().hashCode() : 0;
145  result = 31 * result + (client != null ? client.getId().hashCode() : 0);
146  return result;
147  }
ClientEntity client
Definition: ClientScopeClientMappingEntity.java:56
String getId()
Definition: ClientScopeEntity.java:83
String getId()
Definition: ClientEntity.java:177
ClientScopeEntity clientScope
Definition: ClientScopeClientMappingEntity.java:51

◆ isDefaultScope()

boolean org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.isDefaultScope ( )
inline
77  {
78  return defaultScope;
79  }
boolean defaultScope
Definition: ClientScopeClientMappingEntity.java:59

◆ setClient()

void org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.setClient ( ClientEntity  client)
inline
73  {
74  this.client = client;
75  }
ClientEntity client
Definition: ClientScopeClientMappingEntity.java:56

◆ setClientScope()

void org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.setClientScope ( ClientScopeEntity  clientScope)
inline
65  {
66  this.clientScope = clientScope;
67  }
ClientScopeEntity clientScope
Definition: ClientScopeClientMappingEntity.java:51

◆ setDefaultScope()

void org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.setDefaultScope ( boolean  defaultScope)
inline
81  {
83  }
boolean defaultScope
Definition: ClientScopeClientMappingEntity.java:59

メンバ詳解

◆ client

ClientEntity org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.client
protected

◆ clientScope

ClientScopeEntity org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.clientScope
protected

◆ defaultScope

boolean org.keycloak.models.jpa.entities.ClientScopeClientMappingEntity.defaultScope
protected

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