org.seleniumhq.jetty7.servlet.api.ServletRegistration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetty-repacked Show documentation
Show all versions of jetty-repacked Show documentation
Browser automation framework dependency on jetty
package org.eclipse.jetty.servlet.api;
import java.util.Collection;
import java.util.Set;
public interface ServletRegistration
{
public Set addMapping(String... urlPatterns);
public Collection getMappings();
public String getRunAsRole();
interface Dynamic extends ServletRegistration, Registration.Dynamic
{
public void setLoadOnStartup(int loadOnStartup);
public void setRunAsRole(String roleName);
}
}