Java javax.servlet ServletRegistration fields, constructors, methods, implement or subclass

Example usage for Java javax.servlet ServletRegistration fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.servlet ServletRegistration.

The text is from its open source code.

Method

SetaddMapping(String... urlPatterns)
Adds a servlet mapping with the given URL patterns for the Servlet represented by this ServletRegistration.
StringgetClassName()
Gets the fully qualified class name of the Servlet or Filter that is represented by this Registration.
StringgetInitParameter(String name)
Gets the value of the initialization parameter with the given name that will be used to initialize the Servlet or Filter represented by this Registration object.
CollectiongetMappings()
Gets the currently available mappings of the Servlet represented by this ServletRegistration.
booleansetInitParameter(String name, String value)
Sets the initialization parameter with the given name and value on the Servlet or Filter that is represented by this Registration.
SetsetInitParameters(Map initParameters)
Sets the given initialization parameters on the Servlet or Filter that is represented by this Registration.