public interface Wrapper extends Container
Implementations of Wrapper are responsible for managing the servlet life cycle for their underlying servlet class, including calling init() and destroy() at appropriate times, as well as respecting the existence of the SingleThreadModel declaration on the servlet class itself.
The parent Container attached to a Wrapper will generally be an implementation of Context, representing the servlet context (and therefore the web application) within which this servlet executes.
Child Containers are not allowed on Wrapper implementations, so the
addChild()
method should throw an
IllegalArgumentException
.
Lifecycle.SingleUse
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
ADD_MAPPING_EVENT
Container event for adding a wrapper.
|
static java.lang.String |
REMOVE_MAPPING_EVENT
Container event for removing a wrapper.
|
ADD_CHILD_EVENT, ADD_VALVE_EVENT, REMOVE_CHILD_EVENT, REMOVE_VALVE_EVENT
AFTER_DESTROY_EVENT, AFTER_INIT_EVENT, AFTER_START_EVENT, AFTER_STOP_EVENT, BEFORE_DESTROY_EVENT, BEFORE_INIT_EVENT, BEFORE_START_EVENT, BEFORE_STOP_EVENT, CONFIGURE_START_EVENT, CONFIGURE_STOP_EVENT, PERIODIC_EVENT, START_EVENT, STOP_EVENT
Modifier and Type | Method and Description |
---|---|
void |
addInitParameter(java.lang.String name,
java.lang.String value)
Add a new servlet initialization parameter for this servlet.
|
void |
addInstanceListener(InstanceListener listener)
Deprecated.
Will be removed in 8.5.x onwards
|
void |
addMapping(java.lang.String mapping)
Add a mapping associated with the Wrapper.
|
void |
addSecurityReference(java.lang.String name,
java.lang.String link)
Add a new security role reference record to the set of records for
this servlet.
|
Servlet |
allocate()
Allocate an initialized instance of this Servlet that is ready to have
its
service() method called. |
void |
deallocate(Servlet servlet)
Return this previously allocated servlet to the pool of available
instances.
|
java.lang.String |
findInitParameter(java.lang.String name)
Return the value for the specified initialization parameter name,
if any; otherwise return
null . |
java.lang.String[] |
findInitParameters()
Return the names of all defined initialization parameters for this
servlet.
|
java.lang.String[] |
findMappings()
Return the mappings associated with this wrapper.
|
java.lang.String |
findSecurityReference(java.lang.String name)
Return the security role link for the specified security role
reference name, if any; otherwise return
null . |
java.lang.String[] |
findSecurityReferences()
Return the set of security role reference names associated with
this servlet, if any; otherwise return a zero-length array.
|
long |
getAvailable()
Return the available date/time for this servlet, in milliseconds since
the epoch.
|
int |
getLoadOnStartup()
Return the load-on-startup order value (negative value means
load on first call).
|
MultipartConfigElement |
getMultipartConfigElement()
Get the multi-part configuration for the associated servlet.
|
java.lang.String |
getRunAs()
Return the run-as identity for this servlet.
|
Servlet |
getServlet()
Return the associated servlet instance.
|
java.lang.String |
getServletClass()
Return the fully qualified servlet class name for this servlet.
|
java.lang.String[] |
getServletMethods()
Gets the names of the methods supported by the underlying servlet.
|
void |
incrementErrorCount()
Increment the error count value used when monitoring.
|
boolean |
isAsyncSupported()
Does the associated Servlet support async processing?
|
boolean |
isEnabled()
Is the associated Servlet enabled?
|
boolean |
isOverridable()
Is the Servlet overridable by a ServletContainerInitializer?
|
boolean |
isUnavailable()
Is this servlet currently unavailable?
|
void |
load()
Load and initialize an instance of this servlet, if there is not already
at least one initialized instance.
|
void |
removeInitParameter(java.lang.String name)
Remove the specified initialization parameter from this servlet.
|
void |
removeInstanceListener(InstanceListener listener)
Deprecated.
Will be removed in 8.5.x onwards
|
void |
removeMapping(java.lang.String mapping)
Remove a mapping associated with the wrapper.
|
void |
removeSecurityReference(java.lang.String name)
Remove any security role reference for the specified role name.
|
void |
servletSecurityAnnotationScan()
Deprecated.
This will be removed in Tomcat 9.
|
void |
setAsyncSupported(boolean asyncSupport)
Set the async support for the associated servlet.
|
void |
setAvailable(long available)
Set the available date/time for this servlet, in milliseconds since the
epoch.
|
void |
setEnabled(boolean enabled)
Sets the enabled attribute for the associated servlet.
|
void |
setLoadOnStartup(int value)
Set the load-on-startup order value (negative value means
load on first call).
|
void |
setMultipartConfigElement(MultipartConfigElement multipartConfig)
Set the multi-part configuration for the associated servlet.
|
void |
setOverridable(boolean overridable)
Sets the overridable attribute for this Servlet.
|
void |
setRunAs(java.lang.String runAs)
Set the run-as identity for this servlet.
|
void |
setServlet(Servlet servlet)
Set the associated servlet instance
|
void |
setServletClass(java.lang.String servletClass)
Set the fully qualified servlet class name for this servlet.
|
void |
setServletSecurityAnnotationScanRequired(boolean b)
Deprecated.
This will be removed in Tomcat 9.
|
void |
unavailable(UnavailableException unavailable)
Process an UnavailableException, marking this servlet as unavailable
for the specified amount of time.
|
void |
unload()
Unload all initialized instances of this servlet, after calling the
destroy() method for each instance. |
addChild, addContainerListener, addPropertyChangeListener, backgroundProcess, findChild, findChildren, findContainerListeners, fireContainerEvent, getAccessLog, getBackgroundProcessorDelay, getCatalinaBase, getCatalinaHome, getCluster, getDomain, getLogger, getLogName, getMBeanKeyProperties, getName, getObjectName, getParent, getParentClassLoader, getPipeline, getRealm, getStartStopThreads, logAccess, removeChild, removeContainerListener, removePropertyChangeListener, setBackgroundProcessorDelay, setCluster, setName, setParent, setParentClassLoader, setRealm, setStartStopThreads
addLifecycleListener, destroy, findLifecycleListeners, getState, getStateName, init, removeLifecycleListener, start, stop
static final java.lang.String ADD_MAPPING_EVENT
static final java.lang.String REMOVE_MAPPING_EVENT
long getAvailable()
void setAvailable(long available)
available
- The new available date/timeint getLoadOnStartup()
void setLoadOnStartup(int value)
value
- New load-on-startup valuejava.lang.String getRunAs()
void setRunAs(java.lang.String runAs)
runAs
- New run-as identity valuejava.lang.String getServletClass()
void setServletClass(java.lang.String servletClass)
servletClass
- Servlet class namejava.lang.String[] getServletMethods() throws ServletException
ServletException
- If the target servlet can not be loadedboolean isUnavailable()
Servlet getServlet()
void setServlet(Servlet servlet)
void addInitParameter(java.lang.String name, java.lang.String value)
name
- Name of this initialization parameter to addvalue
- Value of this initialization parameter to add@Deprecated void addInstanceListener(InstanceListener listener)
listener
- The new listenervoid addMapping(java.lang.String mapping)
mapping
- The new wrapper mappingvoid addSecurityReference(java.lang.String name, java.lang.String link)
name
- Role name used within this servletlink
- Role name used within the web applicationServlet allocate() throws ServletException
service()
method called. If the servlet class does
not implement SingleThreadModel
, the (only) initialized
instance may be returned immediately. If the servlet class implements
SingleThreadModel
, the Wrapper implementation must ensure
that this instance is not allocated again until it is deallocated by a
call to deallocate()
.ServletException
- if the servlet init() method threw
an exceptionServletException
- if a loading error occursvoid deallocate(Servlet servlet) throws ServletException
servlet
- The servlet to be returnedServletException
- if a deallocation error occursjava.lang.String findInitParameter(java.lang.String name)
null
.name
- Name of the requested initialization parameterjava.lang.String[] findInitParameters()
java.lang.String[] findMappings()
java.lang.String findSecurityReference(java.lang.String name)
null
.name
- Security role reference used within this servletjava.lang.String[] findSecurityReferences()
void incrementErrorCount()
void load() throws ServletException
ServletException
- if the servlet init() method threw
an exceptionServletException
- if some other loading problem occursvoid removeInitParameter(java.lang.String name)
name
- Name of the initialization parameter to remove@Deprecated void removeInstanceListener(InstanceListener listener)
listener
- The listener to removevoid removeMapping(java.lang.String mapping)
mapping
- The pattern to removevoid removeSecurityReference(java.lang.String name)
name
- Security role used within this servlet to be removedvoid unavailable(UnavailableException unavailable)
unavailable
- The exception that occurred, or null
to mark this servlet as permanently unavailablevoid unload() throws ServletException
destroy()
method for each instance. This can be used,
for example, prior to shutting down the entire servlet engine, or
prior to reloading all of the classes from the Loader associated with
our Loader's repository.ServletException
- if an unload error occursMultipartConfigElement getMultipartConfigElement()
null
will be
returned.void setMultipartConfigElement(MultipartConfigElement multipartConfig)
null
as the new value.boolean isAsyncSupported()
false
.void setAsyncSupported(boolean asyncSupport)
boolean isEnabled()
true
.void setEnabled(boolean enabled)
@Deprecated void setServletSecurityAnnotationScanRequired(boolean b)
b
- Unused.@Deprecated void servletSecurityAnnotationScan() throws ServletException
ServletException
- Never thrownboolean isOverridable()
void setOverridable(boolean overridable)
Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.