Interface InitializablePlugin
- All Superinterfaces:
SAMLPlugin
- All Known Subinterfaces:
FedletAdapter
,IDPAdapter
,SAML2IdentityProviderAdapter
,SPAdapter
- All Known Implementing Classes:
FedletAdapter
,SAML2ServiceProviderAdapter
All the SAML federation plugins that need to be initialized should extend this.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
initialize
(String hostedEntityID, String realm) Deprecated, for removal: This API element is subject to removal in a future version.default void
initialize
(Map initParams) Initializes the federation plugin, this method will only be executed once after creation of the plugin instance.
-
Field Details
-
HOSTED_ENTITY_ID
Constants for hosted entity id parameter- See Also:
-
REALM
Constants for the realm of the hosted entity parameter.- See Also:
-
-
Method Details
-
initialize
Initializes the federation plugin, this method will only be executed once after creation of the plugin instance.- Parameters:
initParams
- initial set of parameters configured in the service provider for this plugin. One of the parameters namedHOSTED_ENTITY_ID
refers to the ID of this hosted service provider entity, one of the parameters namedREALM
refers to the realm of the hosted entity
-
initialize
@Deprecated(forRemoval=true, since="7.3.0") default void initialize(String hostedEntityID, String realm) Deprecated, for removal: This API element is subject to removal in a future version.since 7.3.0 useinitialize(Map)
.Initializes the federation plugin, this method will only be executed once after creation of the plugin instance.- Parameters:
hostedEntityID
- the hosted entity IDrealm
- realm of the hosted entity
-
initialize(Map)
.