org.seleniumhq.jetty7.servlet.api.Registration 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.Map;
import java.util.Set;
public interface Registration
{
public String getName();
public String getClassName();
public boolean setInitParameter(String name, String value);
public String getInitParameter(String name);
public Set setInitParameters(Map initParameters);
public Map getInitParameters();
interface Dynamic extends Registration
{
public void setAsyncSupported(boolean isAsyncSupported);
}
}