List of usage examples for org.apache.shiro.realm Realm interface-usage
From source file com.imos.sample.CustomRealm.java
/** * * @author alok */ public class CustomRealm implements Realm {
From source file com.redhat.rcm.nexus.security.GracefulUNFAuthorizationRealm.java
@Named(GracefulUNFAuthorizationRealm.ID) public class GracefulUNFAuthorizationRealm extends XmlAuthorizingRealm implements Realm { public static final String ID = "GracefulUNFAuthorizationRealm"; private final NxSecConfiguration configuration;
From source file com.redhat.rcm.nexus.security.RemoteUserAuthenticationRealm.java
@Named(RemoteUserAuthenticationRealm.ID) public class RemoteUserAuthenticationRealm extends AuthorizingRealm implements Realm { public static final String ID = "RemoteUserAuthenticationRealm"; private static final char[] REMOTE_USER_PASSWORD_CHARS = "REMOTE_USER".toCharArray();
From source file com.zhengxuetao.shiro.LoginFromRealm.java
/** * * @author zhengxt */ public class LoginFromRealm implements Realm {
From source file me.buom.shiro.realm.HmacRealm.java
/** * Created by buom on 1/7/14. */ public interface HmacRealm extends Realm { }
From source file org.apache.aurora.scheduler.http.api.security.Kerberos5Realm.java
/** * Authentication-only realm for Kerberos V5. */ class Kerberos5Realm implements Realm { private static final Splitter AT_SPLITTER = Splitter.on("@");
From source file org.panifex.module.api.security.AuthenticationService.java
/**
* The AuthenticationService is a security component that can access application-specific
* security entities such as users, roles, and permissions to determine authentication and
* authorization operations.
*
* @see Realm
From source file org.panifex.security.shiro.env.AuthzAwareRealm.java
/**
* Extends the {@link AuthorizationService} to be aware of the {@link Realm} interface.
* <p>
* It is introduced because the {@link org.apache.shiro.authz.ModularRealmAuthorizer
* ModularRealmAuthorizer} uses the collection of {@link Realm}s so it is not enough
* the {@link AuthorizationService} only implements {@link org.apache.shiro.authz.Authorizer
From source file org.qi4j.library.shiro.domain.passwords.PasswordRealmMixin.java
public class PasswordRealmMixin extends AuthorizingRealm implements Realm, Authorizer, PasswordService, ServiceActivation { private static final Logger LOG = LoggerFactory.getLogger(Shiro.LOGGER_NAME); @Structure
From source file org.qi4j.library.shiro.domain.passwords.PasswordRealmService.java
@Mixins(PasswordRealmMixin.class) public interface PasswordRealmService extends Realm, Authorizer, PasswordService, ServiceComposite, ServiceActivation { }