Package com.github.ebnew.ki4so.core.exception

Examples of com.github.ebnew.ki4so.core.exception.NoAuthenticationPostHandlerException


    if(!foundSupported){
      throw new UnsupportedCredentialsException();
    }
    //若认证后处理器对象为空,则抛出异常。
    if(authenticationPostHandler==null){
      throw new NoAuthenticationPostHandlerException();
    }
   
    //交由认证后处理器进行处理。
    return authenticationPostHandler.postAuthentication(credential, principal);
  }
View Full Code Here

TOP

Related Classes of com.github.ebnew.ki4so.core.exception.NoAuthenticationPostHandlerException

Copyright © 2018 www.massapicom. 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.