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

公開メンバ関数

RealmEntity getRealm ()
 
void setRealm (RealmEntity realm)
 
String getId ()
 
void setId (String id)
 
String getName ()
 
void setName (String name)
 
String getDescription ()
 
void setDescription (String description)
 
Collection< ProtocolMapperEntitygetProtocolMappers ()
 
void setProtocolMappers (Collection< ProtocolMapperEntity > protocolMappers)
 
String getProtocol ()
 
void setProtocol (String protocol)
 
Map< String, String > getAttributes ()
 
void setAttributes (Map< String, String > attributes)
 
boolean equals (Object o)
 
int hashCode ()
 

限定公開変数類

RealmEntity realm
 
Map< String, String > attributes = new HashMap<String, String>()
 

変数

Collection< ProtocolMapperEntityprotocolMappers = new ArrayList<ProtocolMapperEntity>()
 

非公開変数類

String id
 
String name
 
String description
 
String protocol
 

詳解

著者
Bill Burke
バージョン
Revision
1

関数詳解

◆ equals()

boolean org.keycloak.models.jpa.entities.ClientScopeEntity.equals ( Object  o)
inline
132  {
133  if (this == o) return true;
134  if (o == null) return false;
135  if (!(o instanceof ClientScopeEntity)) return false;
136 
137  ClientScopeEntity that = (ClientScopeEntity) o;
138 
139  if (!id.equals(that.getId())) return false;
140 
141  return true;
142  }
boolean equals(Object o)
Definition: ClientScopeEntity.java:132

◆ getAttributes()

Map<String, String> org.keycloak.models.jpa.entities.ClientScopeEntity.getAttributes ( )
inline
123  {
124  return attributes;
125  }
Map< String, String > attributes
Definition: ClientScopeEntity.java:73

◆ getDescription()

String org.keycloak.models.jpa.entities.ClientScopeEntity.getDescription ( )
inline
99  {
100  return description;
101  }
String description
Definition: ClientScopeEntity.java:58

◆ getId()

String org.keycloak.models.jpa.entities.ClientScopeEntity.getId ( )
inline
83  {
84  return id;
85  }
String id
Definition: ClientScopeEntity.java:53

◆ getName()

String org.keycloak.models.jpa.entities.ClientScopeEntity.getName ( )
inline
91  {
92  return name;
93  }
String name
Definition: ClientScopeEntity.java:55

◆ getProtocol()

String org.keycloak.models.jpa.entities.ClientScopeEntity.getProtocol ( )
inline
115  {
116  return protocol;
117  }
String protocol
Definition: ClientScopeEntity.java:66

◆ getProtocolMappers()

Collection<ProtocolMapperEntity> org.keycloak.models.jpa.entities.ClientScopeEntity.getProtocolMappers ( )
inline
107  {
108  return protocolMappers;
109  }
Collection< ProtocolMapperEntity > protocolMappers
Definition: ClientScopeEntity.java:60

◆ getRealm()

RealmEntity org.keycloak.models.jpa.entities.ClientScopeEntity.getRealm ( )
inline
75  {
76  return realm;
77  }
RealmEntity realm
Definition: ClientScopeEntity.java:63

◆ hashCode()

int org.keycloak.models.jpa.entities.ClientScopeEntity.hashCode ( )
inline
145  {
146  return id.hashCode();
147  }

◆ setAttributes()

void org.keycloak.models.jpa.entities.ClientScopeEntity.setAttributes ( Map< String, String >  attributes)
inline
127  {
128  this.attributes = attributes;
129  }
Map< String, String > attributes
Definition: ClientScopeEntity.java:73

◆ setDescription()

void org.keycloak.models.jpa.entities.ClientScopeEntity.setDescription ( String  description)
inline
103  {
104  this.description = description;
105  }
String description
Definition: ClientScopeEntity.java:58

◆ setId()

void org.keycloak.models.jpa.entities.ClientScopeEntity.setId ( String  id)
inline
87  {
88  this.id = id;
89  }
String id
Definition: ClientScopeEntity.java:53

◆ setName()

void org.keycloak.models.jpa.entities.ClientScopeEntity.setName ( String  name)
inline
95  {
96  this.name = name;
97  }
String name
Definition: ClientScopeEntity.java:55

◆ setProtocol()

void org.keycloak.models.jpa.entities.ClientScopeEntity.setProtocol ( String  protocol)
inline
119  {
120  this.protocol = protocol;
121  }
String protocol
Definition: ClientScopeEntity.java:66

◆ setProtocolMappers()

void org.keycloak.models.jpa.entities.ClientScopeEntity.setProtocolMappers ( Collection< ProtocolMapperEntity protocolMappers)
inline
111  {
113  }
Collection< ProtocolMapperEntity > protocolMappers
Definition: ClientScopeEntity.java:60

◆ setRealm()

void org.keycloak.models.jpa.entities.ClientScopeEntity.setRealm ( RealmEntity  realm)
inline
79  {
80  this.realm = realm;
81  }
RealmEntity realm
Definition: ClientScopeEntity.java:63

メンバ詳解

◆ attributes

Map<String, String> org.keycloak.models.jpa.entities.ClientScopeEntity.attributes = new HashMap<String, String>()
protected

◆ description

String org.keycloak.models.jpa.entities.ClientScopeEntity.description
private

◆ id

String org.keycloak.models.jpa.entities.ClientScopeEntity.id
private

◆ name

String org.keycloak.models.jpa.entities.ClientScopeEntity.name
private

◆ protocol

String org.keycloak.models.jpa.entities.ClientScopeEntity.protocol
private

◆ protocolMappers

Collection<ProtocolMapperEntity> org.keycloak.models.jpa.entities.ClientScopeEntity.protocolMappers = new ArrayList<ProtocolMapperEntity>()
package

◆ realm

RealmEntity org.keycloak.models.jpa.entities.ClientScopeEntity.realm
protected

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