com.frameworkset.platform.security.authentication.CallbackHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdp-system Show documentation
Show all versions of pdp-system Show documentation
bboss public development platform base on bboss.
package com.frameworkset.platform.security.authentication;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public interface CallbackHandler {
// void handle(Callback[] callbacks)
// throws java.io.IOException, UnsupportedCallbackException;
public HttpServletRequest getRequest();
public HttpServletResponse getResponse();
public String getUserName() ;
public String getPassword() ;
public String[] getUserTypes();
}