keycloak
公開メンバ関数 | 限定公開変数類 | 全メンバ一覧
org.keycloak.representations.idm.ComponentTypeRepresentation クラス
org.keycloak.representations.idm.ComponentTypeRepresentation 連携図
Collaboration graph

公開メンバ関数

String getId ()
 
void setId (String id)
 
String getHelpText ()
 
void setHelpText (String helpText)
 
List< ConfigPropertyRepresentationgetProperties ()
 
void setProperties (List< ConfigPropertyRepresentation > properties)
 
Map< String, Object > getMetadata ()
 
void setMetadata (Map< String, Object > metadata)
 

限定公開変数類

String id
 
String helpText
 
List< ConfigPropertyRepresentationproperties
 
Map< String, Object > metadata = new HashMap<>()
 

詳解

著者
Marek Posolda

関数詳解

◆ getHelpText()

String org.keycloak.representations.idm.ComponentTypeRepresentation.getHelpText ( )
inline
43  {
44  return helpText;
45  }
String helpText
Definition: ComponentTypeRepresentation.java:29

◆ getId()

String org.keycloak.representations.idm.ComponentTypeRepresentation.getId ( )
inline
35  {
36  return id;
37  }
String id
Definition: ComponentTypeRepresentation.java:28

◆ getMetadata()

Map<String, Object> org.keycloak.representations.idm.ComponentTypeRepresentation.getMetadata ( )
inline

Extra information about the component that might come from annotations or interfaces that the component implements For example, if UserStorageProvider implements ImportSynchronization

戻り値
65  {
66  return metadata;
67  }
Map< String, Object > metadata
Definition: ComponentTypeRepresentation.java:32

◆ getProperties()

List<ConfigPropertyRepresentation> org.keycloak.representations.idm.ComponentTypeRepresentation.getProperties ( )
inline
51  {
52  return properties;
53  }
List< ConfigPropertyRepresentation > properties
Definition: ComponentTypeRepresentation.java:30

◆ setHelpText()

void org.keycloak.representations.idm.ComponentTypeRepresentation.setHelpText ( String  helpText)
inline
47  {
48  this.helpText = helpText;
49  }
String helpText
Definition: ComponentTypeRepresentation.java:29

◆ setId()

void org.keycloak.representations.idm.ComponentTypeRepresentation.setId ( String  id)
inline
39  {
40  this.id = id;
41  }
String id
Definition: ComponentTypeRepresentation.java:28

◆ setMetadata()

void org.keycloak.representations.idm.ComponentTypeRepresentation.setMetadata ( Map< String, Object >  metadata)
inline
69  {
70  this.metadata = metadata;
71  }
Map< String, Object > metadata
Definition: ComponentTypeRepresentation.java:32

◆ setProperties()

void org.keycloak.representations.idm.ComponentTypeRepresentation.setProperties ( List< ConfigPropertyRepresentation properties)
inline
55  {
56  this.properties = properties;
57  }
List< ConfigPropertyRepresentation > properties
Definition: ComponentTypeRepresentation.java:30

メンバ詳解

◆ helpText

String org.keycloak.representations.idm.ComponentTypeRepresentation.helpText
protected

◆ id

String org.keycloak.representations.idm.ComponentTypeRepresentation.id
protected

◆ metadata

Map<String, Object> org.keycloak.representations.idm.ComponentTypeRepresentation.metadata = new HashMap<>()
protected

◆ properties

List<ConfigPropertyRepresentation> org.keycloak.representations.idm.ComponentTypeRepresentation.properties
protected

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