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

公開メンバ関数

 Key ()
 
 Key (String userId, String roleId)
 
String getUserId ()
 
String getRoleId ()
 
boolean equals (Object o)
 
int hashCode ()
 

限定公開変数類

String userId
 
String roleId
 

詳解

構築子と解体子

◆ Key() [1/2]

org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.Key.Key ( )
inline
104  {
105  }

◆ Key() [2/2]

org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.Key.Key ( String  userId,
String  roleId 
)
inline
107  {
108  this.userId = userId;
109  this.roleId = roleId;
110  }
String userId
Definition: FederatedUserRoleMappingEntity.java:100
String roleId
Definition: FederatedUserRoleMappingEntity.java:102

関数詳解

◆ equals()

boolean org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.Key.equals ( Object  o)
inline
121  {
122  if (this == o) return true;
123  if (o == null || getClass() != o.getClass()) return false;
124 
125  Key key = (Key) o;
126 
127  if (!roleId.equals(key.roleId)) return false;
128  if (!userId.equals(key.userId)) return false;
129 
130  return true;
131  }
Key()
Definition: FederatedUserRoleMappingEntity.java:104
String userId
Definition: FederatedUserRoleMappingEntity.java:100
String roleId
Definition: FederatedUserRoleMappingEntity.java:102

◆ getRoleId()

String org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.Key.getRoleId ( )
inline
116  {
117  return roleId;
118  }
String roleId
Definition: FederatedUserRoleMappingEntity.java:102

◆ getUserId()

String org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.Key.getUserId ( )
inline
112  {
113  return userId;
114  }
String userId
Definition: FederatedUserRoleMappingEntity.java:100

◆ hashCode()

int org.keycloak.storage.jpa.entity.FederatedUserRoleMappingEntity.Key.hashCode ( )
inline
134  {
135  int result = userId.hashCode();
136  result = 31 * result + roleId.hashCode();
137  return result;
138  }
String userId
Definition: FederatedUserRoleMappingEntity.java:100
String roleId
Definition: FederatedUserRoleMappingEntity.java:102

メンバ詳解

◆ roleId

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

◆ userId

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

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