类 com.seeyon.ctp.login.LoginAuthenticationException
的使用

使用 LoginAuthenticationException 的软件包
com.seeyon.ctp.login   
 

com.seeyon.ctp.loginLoginAuthenticationException 的使用
 

抛出 LoginAuthenticationExceptioncom.seeyon.ctp.login 中的方法
 java.lang.String[] LoginAuthentication.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          认证,策略是: 系统框架把登录界面发过来的HttpServletRequest完整的传递给认证实现类 认证实现类完成自己的逻辑 返回值约定
    当验证通过,需要给框架返回[用户名, 密码],框架将直接跳转到首页 当不验证通过,但要终止本次登录请求,直接throw new LoginAuthenticationException(),用户将跳转到登录页 当不验证通过,返回null,框架将调用下一个认证类认证