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


Java AuthenticationContext.setIsPassive方法代码示例

本文整理汇总了Java中net.shibboleth.idp.authn.context.AuthenticationContext.setIsPassive方法的典型用法代码示例。如果您正苦于以下问题:Java AuthenticationContext.setIsPassive方法的具体用法?Java AuthenticationContext.setIsPassive怎么用?Java AuthenticationContext.setIsPassive使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在net.shibboleth.idp.authn.context.AuthenticationContext的用法示例。


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

示例1: doExecute

import net.shibboleth.idp.authn.context.AuthenticationContext; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override
protected void doExecute(@Nonnull final ProfileRequestContext profileRequestContext) {

    log.debug("{} Initializing authentication context", getLogPrefix());
    final AuthenticationContext authnCtx = new AuthenticationContext();
    if (getAuthenticationRequest().getPrompt() != null) {
        authnCtx.setIsPassive(getAuthenticationRequest().getPrompt().contains(Prompt.Type.NONE));
        authnCtx.setForceAuthn(getAuthenticationRequest().getPrompt().contains(Prompt.Type.LOGIN));
    }
    if (getAuthenticationRequest().getLoginHint() != null) {
        authnCtx.setHintedName(getAuthenticationRequest().getLoginHint());
    }
    final AuthenticationContext initialAuthnContext =
            profileRequestContext.getSubcontext(AuthenticationContext.class);
    if (initialAuthnContext != null) {
        authnCtx.setInitialAuthenticationResult(initialAuthnContext.getAuthenticationResult());
    }
    
    profileRequestContext.addSubcontext(authnCtx, true);
    log.debug("{} Created authentication context: {}", getLogPrefix(), authnCtx);
}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:23,代码来源:InitializeAuthenticationContext.java

示例2: testNoRequestNoneActivePassive

import net.shibboleth.idp.authn.context.AuthenticationContext; //导入方法依赖的package包/类
@Test
public void testNoRequestNoneActivePassive() {
    final AuthenticationContext authCtx = prc.getSubcontext(AuthenticationContext.class);
    authCtx.setIsPassive(true);

    final Event event = action.execute(src);

    Assert.assertNull(authCtx.getAuthenticationResult());
    Assert.assertEquals(authCtx.getAttemptedFlow(), authCtx.getPotentialFlows().get(event.getId()));
    Assert.assertEquals(authCtx.getAttemptedFlow().getId(), "test2");
}
 
开发者ID:CSCfi,项目名称:shibboleth-idp-oidc-extension,代码行数:12,代码来源:SelectAuthenticationFlowTest.java

示例3: doExecute

import net.shibboleth.idp.authn.context.AuthenticationContext; //导入方法依赖的package包/类
@Nonnull
@Override
protected Event doExecute(
        final @Nonnull RequestContext springRequestContext,
        final @Nonnull ProfileRequestContext<ServiceTicketRequest, Object> profileRequestContext){

    final ServiceTicketRequest request = FlowStateSupport.getServiceTicketRequest(springRequestContext);
    final AuthenticationContext ac = new AuthenticationContext();
    ac.setForceAuthn(request.isRenew());
    ac.setIsPassive(false);

    profileRequestContext.addSubcontext(ac, true);
    profileRequestContext.setBrowserProfile(true);
    return Events.Proceed.event(this);
}
 
开发者ID:serac,项目名称:shibboleth-idp-ext-cas,代码行数:16,代码来源:BuildAuthenticationContextAction.java


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