Class SyncopeEnduserApplication
- java.lang.Object
-
- org.springframework.boot.web.servlet.support.SpringBootServletInitializer
-
- org.apache.syncope.client.enduser.SyncopeEnduserApplication
-
- All Implemented Interfaces:
WebApplicationInitializer
@SpringBootApplication(proxyBeanMethods=false) @EnableConfigurationProperties(EnduserProperties.class) public class SyncopeEnduserApplication extends SpringBootServletInitializer
-
-
Field Summary
-
Fields inherited from class org.springframework.boot.web.servlet.support.SpringBootServletInitializer
logger
-
-
Constructor Summary
Constructors Constructor Description SyncopeEnduserApplication()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected SpringApplicationBuilderconfigure(SpringApplicationBuilder builder)KeymasterStartkeymasterStart()KeymasterStopkeymasterStop()static voidmain(String[] args)SyncopeCoreHealthIndicatorsyncopeCoreHealthIndicator(ServiceOps serviceOps, EnduserProperties props)SyncopeWebApplicationsyncopeWebApplication(ResourceLoader resourceLoader, EnduserProperties props, ClassPathScanImplementationLookup lookup, ServiceOps serviceOps, List<IResource> resources)-
Methods inherited from class org.springframework.boot.web.servlet.support.SpringBootServletInitializer
createRootApplicationContext, createSpringApplicationBuilder, deregisterJdbcDrivers, onStartup, run, setRegisterErrorPageFilter
-
-
-
-
Method Detail
-
main
public static void main(String[] args)
-
configure
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder)
- Overrides:
configurein classSpringBootServletInitializer
-
syncopeWebApplication
@ConditionalOnMissingBean @Bean public SyncopeWebApplication syncopeWebApplication(ResourceLoader resourceLoader, EnduserProperties props, ClassPathScanImplementationLookup lookup, ServiceOps serviceOps, List<IResource> resources)
-
syncopeCoreHealthIndicator
@ConditionalOnMissingBean @Bean public SyncopeCoreHealthIndicator syncopeCoreHealthIndicator(ServiceOps serviceOps, EnduserProperties props)
-
keymasterStart
@ConditionalOnProperty(prefix="keymaster", name="enableAutoRegistration", havingValue="true", matchIfMissing=true) @Bean public KeymasterStart keymasterStart()
-
keymasterStop
@ConditionalOnProperty(prefix="keymaster", name="enableAutoRegistration", havingValue="true", matchIfMissing=true) @Bean public KeymasterStop keymasterStop()
-
-