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

org.eclipse.jetty.servlet.api.Registration Maven / Gradle / Ivy

There is a newer version: 11.0.0.beta1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy