Java 类org.springframework.security.web.context.SaveContextOnUpdateOrErrorResponseWrapper 实例源码

项目:onetwo    文件:RedisSecurityContextRepository.java   
public Servlet3SaveToSessionRequestWrapper(HttpServletRequest request,
        SaveContextOnUpdateOrErrorResponseWrapper response) {
    super(request);
    this.response = response;
}
项目:cognitor    文件:CookieSecurityContextRepositoryTest.java   
@Test
public void shouldWrapResponseWhenHttpRequestResponseHolderGiven() {
    repository.loadContext(holder);
    assertTrue(SaveContextOnUpdateOrErrorResponseWrapper.class.isAssignableFrom(holder.getResponse().getClass()));
}