Package org.apache.catalina.core
Class ApplicationServletRegistration
java.lang.Object
org.apache.catalina.core.ApplicationServletRegistration
- All Implemented Interfaces:
Registration
,Registration.Dynamic
,ServletRegistration
,ServletRegistration.Dynamic
-
Nested Class Summary
Nested classes/interfaces inherited from interface javax.servlet.Registration
Registration.Dynamic
Nested classes/interfaces inherited from interface javax.servlet.ServletRegistration
ServletRegistration.Dynamic
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddMapping
(String... urlPatterns) Adds a servlet mapping with the given URL patterns for the Servlet represented by this ServletRegistration.Obtain the name of the implementation class for the Servlet.getInitParameter
(String name) Get the value of an initialisation parameter.Get the names and values of all the initialisation parameters.Gets the currently available mappings of the Servlet represented by this ServletRegistration.getName()
Obtain the name of the Servlet.Obtain the name of the user / group under which the Servlet has been configured to run.void
setAsyncSupported
(boolean asyncSupported) Mark this Servlet/Filter as supported asynchronous processing.boolean
setInitParameter
(String name, String value) Add an initialisation parameter if not already added.setInitParameters
(Map<String, String> initParameters) Add multiple initialisation parameters.void
setLoadOnStartup
(int loadOnStartup) Set the loadOnStartup order for the Servletvoid
setMultipartConfig
(MultipartConfigElement multipartConfig) Set the multi-part configuration for the associated Servlet.void
setRunAsRole
(String roleName) Set the name of the user / group under which the Servlet should be configured to run.setServletSecurity
(ServletSecurityElement constraint) Add security constraints to this Servlet.
-
Constructor Details
-
ApplicationServletRegistration
-
-
Method Details
-
getClassName
Description copied from interface:javax.servlet.Registration
Obtain the name of the implementation class for the Servlet.- Specified by:
getClassName
in interfaceRegistration
- Returns:
- the name of the implementation class for the Servlet.
-
getInitParameter
Description copied from interface:javax.servlet.Registration
Get the value of an initialisation parameter.- Specified by:
getInitParameter
in interfaceRegistration
- Parameters:
name
- The initialisation parameter whose value is required- Returns:
- The value of the named initialisation parameter
-
getInitParameters
Description copied from interface:javax.servlet.Registration
Get the names and values of all the initialisation parameters.- Specified by:
getInitParameters
in interfaceRegistration
- Returns:
- A Map of initialisation parameter names and associated values keyed by name
-
getName
Description copied from interface:javax.servlet.Registration
Obtain the name of the Servlet.- Specified by:
getName
in interfaceRegistration
- Returns:
- the name of the Servlet.
-
setInitParameter
Description copied from interface:javax.servlet.Registration
Add an initialisation parameter if not already added.- Specified by:
setInitParameter
in interfaceRegistration
- Parameters:
name
- Name of initialisation parametervalue
- Value of initialisation parameter- Returns:
true
if the initialisation parameter was set,false
if the initialisation parameter was not set because an initialisation parameter of the same name already existed
-
setInitParameters
Description copied from interface:javax.servlet.Registration
Add multiple initialisation parameters. If any of the supplied initialisation parameter conflicts with an existing initialisation parameter, no updates will be performed.- Specified by:
setInitParameters
in interfaceRegistration
- Parameters:
initParameters
- The initialisation parameters to add- Returns:
- The set of initialisation parameter names that conflicted with existing initialisation parameter. If there are no conflicts, this Set will be empty.
-
setAsyncSupported
public void setAsyncSupported(boolean asyncSupported) Description copied from interface:javax.servlet.Registration.Dynamic
Mark this Servlet/Filter as supported asynchronous processing.- Specified by:
setAsyncSupported
in interfaceRegistration.Dynamic
- Parameters:
asyncSupported
- Should this Servlet/Filter support asynchronous processing
-
setLoadOnStartup
public void setLoadOnStartup(int loadOnStartup) Description copied from interface:javax.servlet.ServletRegistration.Dynamic
Set the loadOnStartup order for the Servlet- Specified by:
setLoadOnStartup
in interfaceServletRegistration.Dynamic
- Parameters:
loadOnStartup
- The position in the order the Servlet should be started (higher numbers are started after lower numbers)
-
setMultipartConfig
Description copied from interface:javax.servlet.ServletRegistration.Dynamic
Set the multi-part configuration for the associated Servlet. To clear the multi-part configuration specifynull
as the new value.- Specified by:
setMultipartConfig
in interfaceServletRegistration.Dynamic
- Parameters:
multipartConfig
- The configuration to associate with the Servlet
-
setRunAsRole
Description copied from interface:javax.servlet.ServletRegistration.Dynamic
Set the name of the user / group under which the Servlet should be configured to run.- Specified by:
setRunAsRole
in interfaceServletRegistration.Dynamic
- Parameters:
roleName
- name of the user / group ornull
if none
-
setServletSecurity
Description copied from interface:javax.servlet.ServletRegistration.Dynamic
Add security constraints to this Servlet.- Specified by:
setServletSecurity
in interfaceServletRegistration.Dynamic
- Parameters:
constraint
- new security constraints for this Servlet- Returns:
- urls currently mapped to this registration that are already present in web.xml
-
addMapping
Description copied from interface:javax.servlet.ServletRegistration
Adds a servlet mapping with the given URL patterns for the Servlet represented by this ServletRegistration. If any of the specified URL patterns are already mapped to a different Servlet, no updates will be performed. If this method is called multiple times, each successive call adds to the effects of the former. The returned set is not backed by the ServletRegistration object, so changes in the returned set are not reflected in the ServletRegistration object, and vice-versa.- Specified by:
addMapping
in interfaceServletRegistration
- Parameters:
urlPatterns
- The URL patterns that this Servlet should be mapped to- Returns:
- the (possibly empty) Set of URL patterns that are already mapped to a different Servlet
-
getMappings
Description copied from interface:javax.servlet.ServletRegistration
Gets the currently available mappings of the Servlet represented by this ServletRegistration. If permitted, any changes to the returned Collection must not affect this ServletRegistration.- Specified by:
getMappings
in interfaceServletRegistration
- Returns:
- a (possibly empty) Collection of the currently available mappings of the Servlet represented by this ServletRegistration
-
getRunAsRole
Description copied from interface:javax.servlet.ServletRegistration
Obtain the name of the user / group under which the Servlet has been configured to run.- Specified by:
getRunAsRole
in interfaceServletRegistration
- Returns:
- the name of the user / group or
null
if none has been specified
-