Package org.springframework.security.web.authentication

Examples of org.springframework.security.web.authentication.NullRememberMeServices.loginFail()


    //~ Methods ========================================================================================================

    public void testAlwaysReturnsNull() {
        NullRememberMeServices services = new NullRememberMeServices();
        assertNull(services.autoLogin(null, null));
        services.loginFail(null, null);
        services.loginSuccess(null, null, null);
        assertTrue(true);
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.