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

nz.ac.auckland.jetty.RoleSource Maven / Gradle / Ivy

Go to download

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