List of usage examples for org.apache.shiro.realm AuthorizingRealm subclass-usage
From source file com.github.ibole.infrastructure.web.security.spring.shiro.realm.StatelessRealm.java
/**
* A Realm implementation that supports this {@link StatelessToken} implementation. This ensures
* that only this Realm will process these types of authentication attempts.
*
* @author bwang
*
From source file com.github.neunkasulle.chronocommand.security.Realm.java
/**
* The Spring/Hibernate sample application's one and only configured Apache Shiro Realm.
*
* <p>Because a Realm is really just a security-specific DAO, we could have just made Hibernate calls directly
* in the implementation and named it a 'HibernateRealm' or something similar.</p>
*
From source file com.github.pires.example.shiro.OrientDbRealm.java
/** * Shiro authentication & authorization realm that relies on OrientDB as * datastore. */ @Component public class OrientDbRealm extends AuthorizingRealm {
From source file com.github.richardwilly98.esdms.shiro.EsRealm.java
public class EsRealm extends AuthorizingRealm { private final HashService hashService; private final UserService userService; private final RoleService roleService;
From source file com.glaf.shiro.SystemRealm.java
public class SystemRealm extends AuthorizingRealm { protected final static Log logger = LogFactory.getLog(SystemRealm.class); public SystemRealm() { super(); setName("SystemRealm");
From source file com.google.constructor.cip.shiro.cayenne.ShiroCayenneRealm.java
public class ShiroCayenneRealm extends AuthorizingRealm { private IUserService userService; public ShiroCayenneRealm() { setName("ClickShiroRealm"); //This name must match the name in the User class's getPrincipals() method }
From source file com.google.constructor.cip.shiro.jpa.ShiroJPARealm.java
public class ShiroJPARealm extends AuthorizingRealm { private IUserService userService; public ShiroJPARealm() { setName("ClickShiroRealm"); //This name must match the name in the User class's getPrincipals() method }
From source file com.graby.store.admin.auth.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { @Autowired protected AuthRemote authRemote; /**
From source file com.graby.store.web.auth.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { @Autowired private Cache<String, String> cache; @Autowired
From source file com.greenearth.bo.security.BackOfficeRealm.java
/**
* The Spring/Hibernate sample application's one and only configured Apache Shiro Realm.
*
* <p>Because a Realm is really just a security-specific DAO, we could have just made Hibernate calls directly
* in the implementation and named it a 'HibernateRealm' or something similar.</p>
*