List of usage examples for org.apache.shiro.realm AuthorizingRealm subclass-usage
From source file org.springframework.boot.orient.sample.shiro.shiro.OrientDbRealm.java
/** * Shiro authentication & authorization realm that relies on OrientDB as * datastore. */ @Component public class OrientDbRealm extends AuthorizingRealm {
From source file org.springjack.examples.quickstart.service.account.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { protected AccountService accountService; /** * ?,.
From source file org.springside.examples.miniweb.service.account.DatabaseRealm.java
public class DatabaseRealm extends AuthorizingRealm { private AccountManager accountManager; /** * ?,.
From source file org.springside.examples.quickstart.service.account.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { protected AccountService accountService; /** * ?,.
From source file org.springside.examples.showcase.security.DatabaseRealm.java
public class DatabaseRealm extends AuthorizingRealm { protected AccountManager accountManager; public DatabaseRealm() { setCredentialsMatcher(new HashedCredentialsMatcher("SHA-1"));
From source file org.springside.examples.showcase.security.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { private static final int INTERATIONS = 1024; private static final int SALT_SIZE = 8; private static final String ALGORITHM = "SHA-1";
From source file org.springside.examples.showcase.service.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { protected AccountService accountService; /** * ?,.
From source file org.springside.examples.taskman.service.account.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { protected AccountService accountService; /** * ?,.
From source file org.springside.examples.user.service.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { protected AccountService accountService; /** * ?,.