Package net.shibboleth.idp.module
Interface IdPModule
- All Superinterfaces:
Component
,IdentifiedComponent
- All Known Implementing Classes:
AbstractIdPModule
,CAS
,Consent
,ContextCheck
,CoreIdPModule
,Demo
,Duo
,ExpiringPassword
,External
,Function
,Hello
,Impersonate
,IPAddress
,MFA
,Password
,PluginIdPModule
,PropertyDrivenIdPModule
,RemoteUser
,RemoteUserInternal
,SPNEGO
,UnlockKeys
,Warning
,X509
This interface is exported (via the service API) by every IdP module.
- Since:
- 4.1.0
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
Interface to a resource managed by the module.static enum
Resource management outcome. -
Method Summary
Modifier and TypeMethodDescriptiondisable
(ModuleContext moduleContext, boolean clean) Disable the module.enable
(ModuleContext moduleContext) Enable the module.getDescription
(ModuleContext moduleContext) Gets module description.getName
(ModuleContext moduleContext) Gets module name.Gets the plugin name of the module's owner, if the module is provided by a plugin.Gets resources managed by this module.getURL()
Gets module URL.boolean
isEnabled
(ModuleContext moduleContext) Gets whether the module is enabled.boolean
Gets whether module enablement requires access to anHttpClient
.Methods inherited from interface net.shibboleth.utilities.java.support.component.IdentifiedComponent
getId
-
Method Details
-
getName
Gets module name.- Parameters:
moduleContext
- optional context for supplying i18n input- Returns:
- a human-readable name for the module
-
getDescription
Gets module description.- Parameters:
moduleContext
- optional context for supplying i18n input- Returns:
- a human-readable description for the module
-
getURL
Gets module URL.- Returns:
- a URL for obtaining additional information about the module
-
getOwnerId
Gets the plugin name of the module's owner, if the module is provided by a plugin.- Returns:
- plugin ID, if any
-
isHttpClientRequired
boolean isHttpClientRequired()Gets whether module enablement requires access to anHttpClient
.- Returns:
- true iff enabling the module requires HTTP client
-
getResources
@Nonnull @NonnullElements @NotLive @Unmodifiable Collection<IdPModule.ModuleResource> getResources()Gets resources managed by this module.- Returns:
- resources managed by this module
-
isEnabled
Gets whether the module is enabled.The status of "enabled" is meant to reflect whether a deployer has previously or implicitly enabled the module, not necessarily whether the module is fully or properly configured or in use.
- Parameters:
moduleContext
- module context- Returns:
- true iff the module is enabled
-
enable
@Nonnull @NonnullElements Map<IdPModule.ModuleResource,IdPModule.ResourceResult> enable(@Nonnull ModuleContext moduleContext) throws ModuleException Enable the module.This operation MUST be idempotent.
- Parameters:
moduleContext
- module context- Returns:
- summary of resource results
- Throws:
ModuleException
- if not successful
-
disable
@Nonnull @NonnullElements Map<IdPModule.ModuleResource,IdPModule.ResourceResult> disable(@Nonnull ModuleContext moduleContext, boolean clean) throws ModuleException Disable the module.This operation MUST be idempotent with respect to the value of the input parameter.
- Parameters:
moduleContext
- module contextclean
- if true, the module should attempt to fully remove traces of previous use in a potentially destructive fashion- Returns:
- summary of resource results
- Throws:
ModuleException
- if not successful
-