|
| T | create (KeycloakSession session, ComponentModel model) |
| |
| String | getId () |
| |
| default void | init (Config.Scope config) |
| |
| default void | postInit (KeycloakSessionFactory factory) |
| |
| default void | close () |
| |
| default String | getHelpText () |
| |
| default List< ProviderConfigProperty > | getConfigProperties () |
| |
| default void | validateConfiguration (KeycloakSession session, RealmModel realm, ComponentModel config) throws ComponentValidationException |
| |
| default void | onParentUpdate (RealmModel realm, UserStorageProviderModel oldParent, UserStorageProviderModel newParent, ComponentModel mapperModel) |
| |
| default void | onCreate (KeycloakSession session, RealmModel realm, ComponentModel model) |
| |
| default List< ProviderConfigProperty > | getConfigProperties (RealmModel realm, ComponentModel parent) |
| |
| default Map< String, Object > | getTypeMetadata (RealmModel realm, ComponentModel parent) |
| |
| default Map< String, Object > | getTypeMetadata () |
| |
| default ProviderType | create (KeycloakSession session) |
| |
| default void | onUpdate (KeycloakSession session, RealmModel realm, ComponentModel oldModel, ComponentModel newModel) |
| |
| default void | preRemove (KeycloakSession session, RealmModel realm, ComponentModel model) |
| |
| default List< ProviderConfigProperty > | getCommonProviderConfigProperties () |
| |
- 著者
- Bill Burke
- バージョン
- Revision
- 1
◆ close()
◆ create() [1/2]
◆ create() [2/2]
called per Keycloak transaction.
- 引数
-
- 戻り値
◆ getCommonProviderConfigProperties()
These are config properties that are common across all implementation of this component type
- 戻り値
101 return Collections.EMPTY_LIST;
◆ getConfigProperties() [1/2]
default List< ProviderConfigProperty > getConfigProperties(RealmModel realm, ComponentModel parent)
Definition: SubComponentFactory.java:38
◆ getConfigProperties() [2/2]
78 return Collections.EMPTY_LIST;
◆ getHelpText()
◆ getId()
This is the name of the provider and will be showed in the admin console as an option.
- 戻り値
◆ getTypeMetadata() [1/2]
This is metadata about this component type. Its really configuration information about the component type and not an individual instance
- 戻り値
default Map< String, Object > getTypeMetadata()
Definition: ComponentFactory.java:111
◆ getTypeMetadata() [2/2]
This is metadata about this component type. Its really configuration information about the component type and not an individual instance
- 戻り値
112 return Collections.EMPTY_MAP;
◆ init()
◆ onCreate()
Called when UserStorageProviderModel is created. This allows you to do initialization of any additional configuration you need to add. For example, you may be introspecting a database or ldap schema to automatically create mappings.
- 引数
-
◆ onParentUpdate()
◆ onUpdate()
Called after the component is updated.
- 引数
-
| session | |
| realm | |
| oldModel | old saved model |
| newModel | new configuration |
◆ postInit()
◆ preRemove()
Called before the component is removed.
- 引数
-
| session | |
| realm | |
| model | model of the component, which is going to be removed |
◆ validateConfiguration()
このインタフェース詳解は次のファイルから抽出されました: