List of usage examples for org.apache.shiro.realm AuthorizingRealm subclass-usage
From source file com.dp2345.AuthenticationRealm.java
/**
* ???
*
* @author CETVISION CORP
* @version 2.0.3
*/
From source file com.dylan.shiro.infrastructure.shiro.CasRealm.java
/**
* This realm implementation acts as a CAS client to a CAS server for authentication and basic authorization.
* <p/>
* This realm functions by inspecting a submitted {@link org.apache.shiro.cas.CasToken CasToken} (which essentially
* wraps a CAS service ticket) and validates it against the CAS server using a configured CAS
* {@link org.jasig.cas.client.validation.TicketValidator TicketValidator}.
From source file com.earl.carnet.security.shiro.ShiroAuthorizingRealm.java
/** * shiro?? * @author yuqs * @since 0.1 */ public class ShiroAuthorizingRealm extends AuthorizingRealm {
From source file com.eheobo.samples.shiro.security.SampleRealm.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.ehuzhu.weixin.service.account.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { protected AccountService accountService; /** * ?,.
From source file com.emix.dubai.business.service.system.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { protected UserService userService; /** * ?,.
From source file com.en.room.service.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { @Autowired private UserService userService; /**
From source file com.endlesswl.knowledge.service.account.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { protected AccountService accountService; /** * ?,.
From source file com.enioka.jqm.webui.shiro.JpaRealm.java
public class JpaRealm extends AuthorizingRealm { public JpaRealm() { setName("database"); } @Override
From source file com.enlight.game.service.account.ShiroDbRealm.java
public class ShiroDbRealm extends AuthorizingRealm { private static final Logger logger = LoggerFactory.getLogger(ShiroDbRealm.class); protected AccountService accountService;