当前位置: 首页>>代码示例>>Java>>正文


Java HostAuthenticationToken类代码示例

本文整理汇总了Java中org.apache.shiro.authc.HostAuthenticationToken的典型用法代码示例。如果您正苦于以下问题:Java HostAuthenticationToken类的具体用法?Java HostAuthenticationToken怎么用?Java HostAuthenticationToken使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


HostAuthenticationToken类属于org.apache.shiro.authc包,在下文中一共展示了HostAuthenticationToken类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: resolveHost

import org.apache.shiro.authc.HostAuthenticationToken; //导入依赖的package包/类
public String resolveHost() {
    String host = getHost();

    if (host == null) {
        //check to see if there is an AuthenticationToken from which to retrieve it:
        AuthenticationToken token = getAuthenticationToken();
        if (token instanceof HostAuthenticationToken) {
            host = ((HostAuthenticationToken) token).getHost();
        }
    }

    if (host == null) {
        Session session = resolveSession();
        if (session != null) {
            host = session.getHost();
        }
    }

    return host;
}
 
开发者ID:xuegongzi,项目名称:rabbitframework,代码行数:21,代码来源:DefaultSubjectContext.java

示例2: login

import org.apache.shiro.authc.HostAuthenticationToken; //导入依赖的package包/类
public void login(AuthenticationToken token) throws AuthenticationException {
    clearRunAsIdentitiesInternal();
    Subject subject = securityManager.login(this, token);

    PrincipalCollection principals;

    String host = null;

    if (subject instanceof DelegatingSubject) {
        DelegatingSubject delegating = (DelegatingSubject) subject;
        //we have to do this in case there are assumed identities - we don't want to lose the 'real' principals:
        principals = delegating.principals;
        host = delegating.host;
    } else {
        principals = subject.getPrincipals();
    }

    if (principals == null || principals.isEmpty()) {
        String msg = "Principals returned from securityManager.login( token ) returned a null or " +
                "empty value.  This value must be non null and populated with one or more elements.";
        throw new IllegalStateException(msg);
    }
    this.principals = principals;
    this.authenticated = true;
    if (token instanceof HostAuthenticationToken) {
        host = ((HostAuthenticationToken) token).getHost();
    }
    if (host != null) {
        this.host = host;
    }
    Session session = subject.getSession(false);
    if (session != null) {
        this.session = decorate(session);
    } else {
        this.session = null;
    }
}
 
开发者ID:xuegongzi,项目名称:rabbitframework,代码行数:38,代码来源:DelegatingSubject.java

示例3: login

import org.apache.shiro.authc.HostAuthenticationToken; //导入依赖的package包/类
public void login(AuthenticationToken token) throws AuthenticationException {
    Subject subject = securityManager.login(this, token);

    PrincipalCollection principals;


        IOTSubject iotSubject = (IOTSubject) subject;
        //we have to do this in case there are assumed identities - we don't want to lose the 'real' principals:
        principals = iotSubject.principals;
    String    host = iotSubject.host;

    if (principals == null || principals.isEmpty()) {
        String msg = "Principals returned from securityManager.login( token ) returned a null or " +
                "empty value.  This value must be non null and populated with one or more elements.";
        throw new IllegalStateException(msg);
    }
    this.principals = principals;
    this.authenticated = true;
    if (token instanceof HostAuthenticationToken) {
        host = ((HostAuthenticationToken) token).getHost();
    }
    if (host != null) {
        this.host = host;
    }
    this.session = subject.getSession(false);

}
 
开发者ID:caricah,项目名称:iotracah,代码行数:28,代码来源:IOTSubject.java

示例4: noHostSupport

import org.apache.shiro.authc.HostAuthenticationToken; //导入依赖的package包/类
@Test(expectedExceptions={AuthenticationException.class})
public void noHostSupport() {
	realm.doGetAuthenticationInfo(new HostAuthenticationToken() {
		private static final long	serialVersionUID	= 1L;
		@Override public Object getPrincipal() {return null;}
		@Override	public Object getCredentials() {return null;}
		@Override	public String getHost() {	return null;}
	}); 
}
 
开发者ID:TensorWrench,项目名称:shiro-mongodb-realm,代码行数:10,代码来源:MongoUserPasswordRealmAuthenticationTest.java


注:本文中的org.apache.shiro.authc.HostAuthenticationToken类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。