Example usage for org.apache.shiro.realm AuthorizingRealm subclass-usage

List of usage examples for org.apache.shiro.realm AuthorizingRealm subclass-usage

Introduction

In this page you can find the example usage for org.apache.shiro.realm AuthorizingRealm subclass-usage.

Usage

From source file com.figo.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file com.funtl.framework.smoke.core.modules.sys.security.SystemAuthorizingRealm.java

/**
 * ?
 *
 * @author ??
 */
@Service

From source file com.fycoder.ll.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file com.g2.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    private static final Logger logger = LoggerFactory.getLogger(ShiroDbRealm.class);

    protected AccountService accountService;

From source file com.galaxy.service.user.ShiroDbRealm.java

@Service
public class ShiroDbRealm extends AuthorizingRealm {
    @Autowired
    protected UserService userService;
    @Autowired
    TokenService tokenService;

From source file com.gamewin.weixin.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file com.gemstone.gemfire.internal.security.shiro.CustomAuthRealm.java

public class CustomAuthRealm extends AuthorizingRealm {

    private static final String REALM_NAME = "CUSTOMAUTHREALM";

    private SecurityManager securityManager = null;

From source file com.getanydata.service.account.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    protected AccountService accountService;

    /**
     * ?,.

From source file com.gfan.dp.framework.shiro.ShiroDbRealm.java

public class ShiroDbRealm extends AuthorizingRealm {

    public ShiroDbRealm() {
        setCredentialsMatcher(new AllowAllCredentialsMatcher());
        setAuthenticationTokenClass(ShiroGfanCookieToken.class);
    }

From source file com.github.ibole.infrastructure.web.security.spring.shiro.realm.FormRealm.java

/**
 * @author bwang
 *
 */
public class FormRealm extends AuthorizingRealm {