All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.frameworkset.platform.security.authentication.CallbackHandler Maven / Gradle / Ivy

There is a newer version: 5.6.4
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy