nz.ac.auckland.jetty.RoleSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-jetty8 Show documentation
Show all versions of common-jetty8 Show documentation
This provides commonly used Jetty extensions that are used in the Runnable-War.
The newest version!
package nz.ac.auckland.jetty;
import java.util.List;
public interface RoleSource {
/**
* Primarily we want a list of roles back, but if there is other data that can come along for the ride...
*
* The role information is the only information the servlet engine can actually use.
*
* @param user
* @param request
* @return
*/
List getRoles(String user, javax.servlet.http.HttpServletRequest request);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy