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

クラス

class  Key
 

公開メンバ関数

String getUserId ()
 
void setUserId (String userId)
 
String getRealmId ()
 
void setRealmId (String realmId)
 
String getStorageProviderId ()
 
void setStorageProviderId (String storageProviderId)
 
String getRoleId ()
 
void setRoleId (String roleId)
 
boolean equals (Object o)
 
int hashCode ()
 

限定公開変数類

String userId
 
String roleId
 
String realmId
 
String storageProviderId
 

詳解

著者
Bill Burke
バージョン
Revision
1

関数詳解

◆ equals()

boolean org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.equals ( Object  o)
inline
142  {
143  if (this == o) return true;
144  if (o == null) return false;
145  if (!(o instanceof FederatedUserRoleMappingEntity)) return false;
146 
147  FederatedUserRoleMappingEntity key = (FederatedUserRoleMappingEntity) o;
148 
149  if (!roleId.equals(key.roleId)) return false;
150  if (!userId.equals(key.userId)) return false;
151 
152  return true;
153  }
String roleId
Definition: FederatedUserRoleMappingEntity.java:56
String userId
Definition: FederatedUserRoleMappingEntity.java:52

◆ getRealmId()

String org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.getRealmId ( )
inline
73  {
74  return realmId;
75  }
String realmId
Definition: FederatedUserRoleMappingEntity.java:59

◆ getRoleId()

String org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.getRoleId ( )
inline
89  {
90  return roleId;
91  }
String roleId
Definition: FederatedUserRoleMappingEntity.java:56

◆ getStorageProviderId()

String org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.getStorageProviderId ( )
inline
81  {
82  return storageProviderId;
83  }
String storageProviderId
Definition: FederatedUserRoleMappingEntity.java:62

◆ getUserId()

String org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.getUserId ( )
inline
64  {
65  return userId;
66  }
String userId
Definition: FederatedUserRoleMappingEntity.java:52

◆ hashCode()

int org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.hashCode ( )
inline
156  {
157  int result = userId.hashCode();
158  result = 31 * result + roleId.hashCode();
159  return result;
160  }
String roleId
Definition: FederatedUserRoleMappingEntity.java:56
String userId
Definition: FederatedUserRoleMappingEntity.java:52

◆ setRealmId()

void org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.setRealmId ( String  realmId)
inline
77  {
78  this.realmId = realmId;
79  }
String realmId
Definition: FederatedUserRoleMappingEntity.java:59

◆ setRoleId()

void org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.setRoleId ( String  roleId)
inline
93  {
94  this.roleId = roleId;
95  }
String roleId
Definition: FederatedUserRoleMappingEntity.java:56

◆ setStorageProviderId()

void org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.setStorageProviderId ( String  storageProviderId)
inline
85  {
87  }
String storageProviderId
Definition: FederatedUserRoleMappingEntity.java:62

◆ setUserId()

void org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.setUserId ( String  userId)
inline
68  {
69  KeyUtils.assertValidKey(userId);
70  this.userId = userId;
71  }
String userId
Definition: FederatedUserRoleMappingEntity.java:52

メンバ詳解

◆ realmId

String org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.realmId
protected

◆ roleId

String org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.roleId
protected

◆ storageProviderId

String org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.storageProviderId
protected

◆ userId

String org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.userId
protected

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