Package org.opensaml.core.config
Interface Initializer
-
- All Known Implementing Classes:
AbstractXMLObjectProviderInitializer,GlobalParserPoolInitializer,MetricRegistryInitializer,XMLObjectProviderInitializer
public interface InitializerInterface for classes responsible for initializing some bit of library configuration or state.An initializer would typically be called by invoking the
InitializationService, which in turn locates the registered initializers via the Java Services API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinit()Perform the initialization process encompassed by the implementation.
-
-
-
Method Detail
-
init
void init() throws InitializationException
Perform the initialization process encompassed by the implementation.- Throws:
InitializationException- if initialization could not be completed successfully
-
-