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


Java ClientInfoHolder.setClientInfo方法代码示例

本文整理汇总了Java中org.jasig.inspektr.common.web.ClientInfoHolder.setClientInfo方法的典型用法代码示例。如果您正苦于以下问题:Java ClientInfoHolder.setClientInfo方法的具体用法?Java ClientInfoHolder.setClientInfo怎么用?Java ClientInfoHolder.setClientInfo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.jasig.inspektr.common.web.ClientInfoHolder的用法示例。


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

示例1: loginUnsuccessfully

import org.jasig.inspektr.common.web.ClientInfoHolder; //导入方法依赖的package包/类
@Override
protected MockHttpServletResponse loginUnsuccessfully(final String username, final String fromAddress)
        throws Exception {
    final MockHttpServletRequest request = new MockHttpServletRequest();
    final MockHttpServletResponse response = new MockHttpServletResponse();
    request.setMethod("POST");
    request.setParameter("username", username);
    request.setRemoteAddr(fromAddress);
    final MockRequestContext context = new MockRequestContext();
    context.setCurrentEvent(new Event("", "error"));
    request.setAttribute("flowRequestContext", context);
    ClientInfoHolder.setClientInfo(new ClientInfo(request));

    getThrottle().preHandle(request, response, null);

    try {
        authenticationManager.authenticate(AuthenticationTransaction.wrap(badCredentials(username)));
    } catch (final AuthenticationException e) {
        getThrottle().postHandle(request, response, null, null);
        return response;
    }
    fail("Expected AbstractAuthenticationException");
    return null;
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:25,代码来源:InspektrThrottledSubmissionByIpAddressAndUsernameHandlerInterceptorAdapterTests.java

示例2: loginUnsuccessfully

import org.jasig.inspektr.common.web.ClientInfoHolder; //导入方法依赖的package包/类
@Override
protected MockHttpServletResponse loginUnsuccessfully(final String username, final String fromAddress)
        throws Exception {
    final MockHttpServletRequest request = new MockHttpServletRequest();
    final MockHttpServletResponse response = new MockHttpServletResponse();
    request.setMethod("POST");
    request.setParameter("username", username);
    request.setRemoteAddr(fromAddress);
    final MockRequestContext context = new MockRequestContext();
    context.setCurrentEvent(new Event("", "error"));
    request.setAttribute("flowRequestContext", context);
    ClientInfoHolder.setClientInfo(new ClientInfo(request));

    getThrottle().preHandle(request, response, null);

    try {
        authenticationManager.authenticate(badCredentials(username));
    } catch (final AuthenticationException e) {
        getThrottle().postHandle(request, response, null, null);
        return response;
    }
    fail("Expected AuthenticationException");
    return null;
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:25,代码来源:InspektrThrottledSubmissionByIpAddressAndUsernameHandlerInterceptorAdapterTests.java

示例3: setUp

import org.jasig.inspektr.common.web.ClientInfoHolder; //导入方法依赖的package包/类
@Before
public void setUp() throws Exception {
    ClientInfoHolder.setClientInfo(CLIENT_INFO);
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:5,代码来源:AbstractThrottledSubmissionHandlerInterceptorAdapterTests.java

示例4: tearDown

import org.jasig.inspektr.common.web.ClientInfoHolder; //导入方法依赖的package包/类
@After
public void tearDown() throws Exception {
    ClientInfoHolder.setClientInfo(null);
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:5,代码来源:AbstractThrottledSubmissionHandlerInterceptorAdapterTests.java


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