Interface SyncopeCoreLoader
-
- All Superinterfaces:
Ordered
- All Known Subinterfaces:
ConfParamLoader
,ContentLoader
,ImplementationLookup
- All Known Implementing Classes:
AMEntitlementLoader
,AuditLoader
,ClassPathScanImplementationLookup
,ConnectorLoader
,DefaultJobManager
,DomainProcessEngineFactoryBean
,ElasticsearchIndexLoader
,FlowableLoader
,IdMEntitlementLoader
,IdMImplementationTypeLoader
,IdRepoEntitlementLoader
,IdRepoImplementationTypeLoader
,ITImplementationLookup
,KeymasterConfParamLoader
,OIDCC4UILoader
,OpenSearchIndexLoader
,SAML2SP4UILoader
,SCIMLoader
,StartupDomainLoader
,TaskExecutorUnloader
,XMLContentLoader
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface SyncopeCoreLoader extends Ordered
-
-
Field Summary
-
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
load()
Perform generic (not related to any domain) init operations.default void
load(String domain, DataSource datasource)
Perform init operations on the given domain.default void
unload()
Perform generic (not related to any domain) dispose operations.default void
unload(String domain)
Perform dispose operations on the given domain.
-
-
-
Method Detail
-
load
default void load()
Perform generic (not related to any domain) init operations.
-
load
default void load(String domain, DataSource datasource)
Perform init operations on the given domain.- Parameters:
domain
- domain to initializedatasource
- db access for the given domain
-
unload
default void unload(String domain)
Perform dispose operations on the given domain.- Parameters:
domain
- domain to unload
-
unload
default void unload()
Perform generic (not related to any domain) dispose operations.
-
-