Example usage for org.apache.shiro.spring LifecycleBeanPostProcessor LifecycleBeanPostProcessor

List of usage examples for org.apache.shiro.spring LifecycleBeanPostProcessor LifecycleBeanPostProcessor

Introduction

In this page you can find the example usage for org.apache.shiro.spring LifecycleBeanPostProcessor LifecycleBeanPostProcessor.

Prototype

public LifecycleBeanPostProcessor() 

Source Link

Document

Default Constructor.

Usage

From source file:cn.fh.starter.shiro.autoconfigure.ShiroManager.java

License:Apache License

/**
 * ??Shirolifecyclebean/*from  w  w  w. j a  va 2s  .co m*/
 */
@Bean(name = "lifecycleBeanPostProcessor")
@ConditionalOnMissingBean
public LifecycleBeanPostProcessor lifecycleBeanPostProcessor() {
    return new LifecycleBeanPostProcessor();
}

From source file:com.aegeus.core.AuthenticationConfiguration.java

License:Apache License

@Bean
public LifecycleBeanPostProcessor lifecycleBeanPostProcessor() {
    return new LifecycleBeanPostProcessor();
}

From source file:com.cuisongliu.springboot.shiro.autoconfig.ShiroAutoConfig.java

License:Open Source License

/**
 * Shiro?:/*from   w  ww. jav  a 2 s  .  c  om*/
 * Initializable?Shiro bean?Initializable?(:UserRealm)
 * Destroyable?Shiro bean? Destroyable?(:DefaultSecurityManager)
 */
@Bean("lifecycleBeanPostProcessor")
public LifecycleBeanPostProcessor lifecycleBeanPostProcessor() {
    return new LifecycleBeanPostProcessor();
}

From source file:com.github.ibole.infrastructure.web.security.spring.shiro.config.ShiroConfig.java

License:Apache License

@Bean(name = "lifecycleBeanPostProcessor")
public LifecycleBeanPostProcessor getLifecycleBeanPostProcessor() {
    return new LifecycleBeanPostProcessor();
}

From source file:com.stormpath.shiro.spring.config.AbstractShiroBeanConfiguration.java

License:Apache License

public LifecycleBeanPostProcessor lifecycleBeanPostProcessor() {
    return new LifecycleBeanPostProcessor();
}

From source file:com.whatlookingfor.core.config.ShiroConfiguration.java

License:Apache License

/**
 * ??Shirolifecyclebean/*ww  w .  j  a  va 2 s. c  o  m*/
 * @return LifecycleBeanPostProcessor
 */
@Bean(name = "lifecycleBeanPostProcessor")
public LifecycleBeanPostProcessor getLifecycleBeanPostProcessor() {
    return new LifecycleBeanPostProcessor();
}

From source file:io.renren.common.config.ShiroConfig.java

License:Apache License

@Bean("lifecycleBeanPostProcessor")
public LifecycleBeanPostProcessor lifecycleBeanPostProcessor() {
    return new LifecycleBeanPostProcessor();
}

From source file:org.cgiar.ccafs.marlo.MarloShiroConfiguration.java

License:Open Source License

@Bean(name = "lifecycleBeanPostProcessor")
public LifecycleBeanPostProcessor vetLifecycleBeanPostProcessor() {
    return new LifecycleBeanPostProcessor();
}

From source file:org.lazulite.boot.autoconfigure.osaam.shiro.ShiroConfiguration.java

License:Apache License

@Bean(name = "lifecycleBeanPostProcessor")
@ConditionalOnMissingBean/* www. j  a va2s.  c om*/
public LifecycleBeanPostProcessor lifecycleBeanPostProcessor() {
    return new LifecycleBeanPostProcessor();
}

From source file:org.owasp.dependencytrack.config.SecurityConfiguration.java

License:Open Source License

@Bean
LifecycleBeanPostProcessor lifecycleBeanPostProcessor() {
    return new LifecycleBeanPostProcessor();
}