|
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 内部クラス | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object | +--org.apache.catalina.core.ContainerBase | +--org.apache.catalina.core.StandardContext
Standard implementation of the Context interface. Each child container must be a Wrapper implementation to process the requests directed to a particular servlet.
フィールドの概要 | |
protected boolean |
cachingAllowed
Caching allowed flag. |
クラス org.apache.catalina.core.ContainerBase から継承したフィールド |
children, cluster, debug, lifecycle, listeners, loader, logger, manager, mapper, mapperClass, mappers, name, parent, parentClassLoader, pipeline, realm, resources, sm, started, support |
インタフェース org.apache.catalina.Container から継承したフィールド |
ADD_CHILD_EVENT, ADD_MAPPER_EVENT, ADD_VALVE_EVENT, REMOVE_CHILD_EVENT, REMOVE_MAPPER_EVENT, REMOVE_VALVE_EVENT |
インタフェース org.apache.catalina.Lifecycle から継承したフィールド |
START_EVENT, STOP_EVENT |
コンストラクタの概要 | |
StandardContext()
Create a new StandardContext component with the default basic Valve. |
メソッドの概要 | |
void |
addApplicationListener(java.lang.String listener)
Add a new Listener class name to the set of Listeners configured for this application. |
void |
addApplicationParameter(ApplicationParameter parameter)
Add a new application parameter for this application. |
void |
addChild(Container child)
Add a child Container, only if the proposed child is an implementation of Wrapper. |
void |
addConstraint(SecurityConstraint constraint)
Add a security constraint to the set for this web application. |
protected void |
addDefaultMapper(java.lang.String mapperClass)
Add a default Mapper implementation if none have been configured explicitly. |
void |
addEjb(ContextEjb ejb)
Add an EJB resource reference for this web application. |
void |
addEnvironment(ContextEnvironment environment)
Add an environment entry for this web application. |
void |
addErrorPage(ErrorPage errorPage)
Add an error page for the specified error or Java exception. |
void |
addFilterDef(FilterDef filterDef)
Add a filter definition to this Context. |
void |
addFilterMap(FilterMap filterMap)
Add a filter mapping to this Context. |
void |
addInstanceListener(java.lang.String listener)
Add the classname of an InstanceListener to be added to each Wrapper appended to this Context. |
void |
addLocalEjb(ContextLocalEjb ejb)
Add a local EJB resource reference for this web application. |
void |
addMimeMapping(java.lang.String extension,
java.lang.String mimeType)
Add a new MIME mapping, replacing any existing mapping for the specified extension. |
void |
addParameter(java.lang.String name,
java.lang.String value)
Add a new context initialization parameter. |
void |
addResource(ContextResource resource)
Add a resource reference for this web application. |
void |
addResourceEnvRef(java.lang.String name,
java.lang.String type)
Add a resource environment reference for this web application. |
void |
addResourceParams(ResourceParams resourceParameters)
Add resource parameters for this web application. |
void |
addRoleMapping(java.lang.String role,
java.lang.String link)
Add a security role reference for this web application. |
void |
addSecurityRole(java.lang.String role)
Add a new security role for this web application. |
void |
addServletMapping(java.lang.String pattern,
java.lang.String name)
Add a new servlet mapping, replacing any existing mapping for the specified pattern. |
void |
addTaglib(java.lang.String uri,
java.lang.String location)
Add a JSP tag library for the specified URI. |
void |
addWelcomeFile(java.lang.String name)
Add a new welcome file to the set recognized by this Context. |
void |
addWrapperLifecycle(java.lang.String listener)
Add the classname of a LifecycleListener to be added to each Wrapper appended to this Context. |
void |
addWrapperListener(java.lang.String listener)
Add the classname of a ContainerListener to be added to each Wrapper appended to this Context. |
protected java.lang.String |
adjustURLPattern(java.lang.String urlPattern)
Adjust the URL pattern to begin with a leading slash, if appropriate (i.e. we are running a servlet 2.2 application). |
Wrapper |
createWrapper()
Factory method to create and return a new Wrapper instance, of the Java implementation class appropriate for this Context implementation. |
protected java.io.File |
engineBase()
Return a File object representing the base directory for the entire servlet container (i.e. the Engine container if present). |
boolean |
filterStart()
Configure and initialize the set of filters for this Context. |
boolean |
filterStop()
Finalize and release the set of filters for this Context. |
java.lang.String[] |
findApplicationListeners()
Return the set of application listener class names configured for this application. |
ApplicationParameter[] |
findApplicationParameters()
Return the set of application parameters for this application. |
SecurityConstraint[] |
findConstraints()
Return the security constraints for this web application. |
ContextEjb |
findEjb(java.lang.String name)
Return the EJB resource reference with the specified name, if any; otherwise, return null . |
ContextEjb[] |
findEjbs()
Return the defined EJB resource references for this application. |
ContextEnvironment |
findEnvironment(java.lang.String name)
Return the environment entry with the specified name, if any; otherwise, return null . |
ContextEnvironment[] |
findEnvironments()
Return the set of defined environment entries for this web application. |
ErrorPage |
findErrorPage(int errorCode)
Return the error page entry for the specified HTTP error code, if any; otherwise return null . |
ErrorPage |
findErrorPage(java.lang.String exceptionType)
Return the error page entry for the specified Java exception type, if any; otherwise return null . |
ErrorPage[] |
findErrorPages()
Return the set of defined error pages for all specified error codes and exception types. |
javax.servlet.FilterConfig |
findFilterConfig(java.lang.String name)
Find and return the initialized FilterConfig for the
specified filter name, if any; otherwise return null . |
FilterDef |
findFilterDef(java.lang.String filterName)
Return the filter definition for the specified filter name, if any; otherwise return null . |
FilterDef[] |
findFilterDefs()
Return the set of defined filters for this Context. |
FilterMap[] |
findFilterMaps()
Return the set of filter mappings for this Context. |
java.lang.String[] |
findInstanceListeners()
Return the set of InstanceListener classes that will be added to newly created Wrappers automatically. |
ContextLocalEjb |
findLocalEjb(java.lang.String name)
Return the local EJB resource reference with the specified name, if any; otherwise, return null . |
ContextLocalEjb[] |
findLocalEjbs()
Return the defined local EJB resource references for this application. |
java.lang.String |
findMimeMapping(java.lang.String extension)
Return the MIME type to which the specified extension is mapped, if any; otherwise return null . |
java.lang.String[] |
findMimeMappings()
Return the extensions for which MIME mappings are defined. |
java.lang.String |
findParameter(java.lang.String name)
Return the value for the specified context initialization parameter name, if any; otherwise return null . |
java.lang.String[] |
findParameters()
Return the names of all defined context initialization parameters for this Context. |
ContextResource |
findResource(java.lang.String name)
Return the resource reference with the specified name, if any; otherwise return null . |
java.lang.String |
findResourceEnvRef(java.lang.String name)
Return the resource environment reference type for the specified name, if any; otherwise return null . |
java.lang.String[] |
findResourceEnvRefs()
Return the set of resource environment reference names for this web application. |
ContextResource[] |
findResources()
Return the defined resource references for this application. |
java.lang.String |
findRoleMapping(java.lang.String role)
For the given security role (as used by an application), return the corresponding role name (as defined by the underlying Realm) if there is one. |
boolean |
findSecurityRole(java.lang.String role)
Return true if the specified security role is defined
for this application; otherwise return false . |
java.lang.String[] |
findSecurityRoles()
Return the security roles defined for this application. |
java.lang.String |
findServletMapping(java.lang.String pattern)
Return the servlet name mapped by the specified pattern (if any); otherwise return null . |
java.lang.String[] |
findServletMappings()
Return the patterns of all defined servlet mappings for this Context. |
java.lang.String |
findStatusPage(int status)
Return the context-relative URI of the error page for the specified HTTP status code, if any; otherwise return null . |
int[] |
findStatusPages()
Return the set of HTTP status codes for which error pages have been specified. |
java.lang.String |
findTaglib(java.lang.String uri)
Return the tag library descriptor location for the specified taglib URI, if any; otherwise, return null . |
java.lang.String[] |
findTaglibs()
Return the URIs of all tag libraries for which a tag library descriptor location has been specified. |
boolean |
findWelcomeFile(java.lang.String name)
Return true if the specified welcome file is defined
for this Context; otherwise return false . |
java.lang.String[] |
findWelcomeFiles()
Return the set of welcome files defined for this Context. |
java.lang.String[] |
findWrapperLifecycles()
Return the set of LifecycleListener classes that will be added to newly created Wrappers automatically. |
java.lang.String[] |
findWrapperListeners()
Return the set of ContainerListener classes that will be added to newly created Wrappers automatically. |
java.lang.Object[] |
getApplicationListeners()
Return the set of initialized application listener objects, in the order they were specified in the web application deployment descriptor, for this application. |
boolean |
getAvailable()
Return the application available flag for this Context. |
CharsetMapper |
getCharsetMapper()
Return the Locale to character set mapper for this Context. |
java.lang.String |
getCharsetMapperClass()
Return the Locale to character set mapper class for this Context. |
boolean |
getConfigured()
Return the "correctly configured" flag for this Context. |
boolean |
getCookies()
Return the "use cookies for session ids" flag. |
boolean |
getCrossContext()
Return the "allow crossing servlet contexts" flag. |
java.lang.String |
getDisplayName()
Return the display name of this web application. |
boolean |
getDistributable()
Return the distributable flag for this web application. |
java.lang.String |
getDocBase()
Return the document root for this Context. |
java.lang.String |
getInfo()
Return descriptive information about this Container implementation and the corresponding version number, in the format <description>/<version> . |
LoginConfig |
getLoginConfig()
Return the login configuration descriptor for this web application. |
java.lang.String |
getMapperClass()
Return the default Mapper class name. |
boolean |
getOverride()
Return the DefaultContext override flag for this web application. |
java.lang.String |
getPath()
Return the context path for this Context. |
boolean |
getPrivileged()
Return the privileged flag for this web application. |
java.lang.String |
getPublicId()
Return the public identifier of the deployment descriptor DTD that is currently being parsed. |
boolean |
getReloadable()
Return the reloadable flag for this web application. |
javax.servlet.ServletContext |
getServletContext()
Return the servlet context for which this Context is a facade. |
int |
getSessionTimeout()
Return the default session timeout (in minutes) for this web application. |
java.lang.String |
getWorkDir()
Return the work directory for this Context. |
java.lang.String |
getWrapperClass()
Return the Java class name of the Wrapper implementation used for servlets registered in this Context. |
void |
invoke(Request request,
Response response)
Process the specified Request, and generate the corresponding Response, according to the design of this particular Container. |
boolean |
isCachingAllowed()
Is caching allowed ? |
boolean |
isFilesystemBased()
Returns true if the resources associated with this context are filesystem based. |
boolean |
isReplaceWelcomeFiles()
Return the "replace welcome files" property. |
protected boolean |
isServlet22()
Are we processing a version 2.2 deployment descriptor? |
boolean |
isUseNaming()
Returns true if the internal naming support is used. |
boolean |
listenerStart()
Configure the set of instantiated application event listeners for this Context. |
boolean |
listenerStop()
Send an application stop event to all interested listeners. |
void |
loadOnStartup(Container[] children)
Load and initialize all servlets marked "load on startup" in the web application deployment descriptor. |
void |
reload()
Reload this web application, if reloading is supported. |
void |
removeApplicationListener(java.lang.String listener)
Remove the specified application listener class from the set of listeners for this application. |
void |
removeApplicationParameter(java.lang.String name)
Remove the application parameter with the specified name from the set for this application. |
void |
removeConstraint(SecurityConstraint constraint)
Remove the specified security constraint from this web application. |
void |
removeEjb(java.lang.String name)
Remove any EJB resource reference with the specified name. |
void |
removeEnvironment(java.lang.String name)
Remove any environment entry with the specified name. |
void |
removeErrorPage(ErrorPage errorPage)
Remove the error page for the specified error code or Java language exception, if it exists; otherwise, no action is taken. |
void |
removeFilterDef(FilterDef filterDef)
Remove the specified filter definition from this Context, if it exists; otherwise, no action is taken. |
void |
removeFilterMap(FilterMap filterMap)
Remove a filter mapping from this Context. |
void |
removeInstanceListener(java.lang.String listener)
Remove a class name from the set of InstanceListener classes that will be added to newly created Wrappers. |
void |
removeLocalEjb(java.lang.String name)
Remove any local EJB resource reference with the specified name. |
void |
removeMimeMapping(java.lang.String extension)
Remove the MIME mapping for the specified extension, if it exists; otherwise, no action is taken. |
void |
removeParameter(java.lang.String name)
Remove the context initialization parameter with the specified name, if it exists; otherwise, no action is taken. |
void |
removeResource(java.lang.String name)
Remove any resource reference with the specified name. |
void |
removeResourceEnvRef(java.lang.String name)
Remove any resource environment reference with the specified name. |
void |
removeRoleMapping(java.lang.String role)
Remove any security role reference for the specified name |
void |
removeSecurityRole(java.lang.String role)
Remove any security role with the specified name. |
void |
removeServletMapping(java.lang.String pattern)
Remove any servlet mapping for the specified pattern, if it exists; otherwise, no action is taken. |
void |
removeTaglib(java.lang.String uri)
Remove the tag library location forthe specified tag library URI. |
void |
removeWelcomeFile(java.lang.String name)
Remove the specified welcome file name from the list recognized by this Context. |
void |
removeWrapperLifecycle(java.lang.String listener)
Remove a class name from the set of LifecycleListener classes that will be added to newly created Wrappers. |
void |
removeWrapperListener(java.lang.String listener)
Remove a class name from the set of ContainerListener classes that will be added to newly created Wrappers. |
void |
setApplicationListeners(java.lang.Object[] listeners)
Store the set of initialized application listener objects, in the order they were specified in the web application deployment descriptor, for this application. |
void |
setAvailable(boolean available)
Set the application available flag for this Context. |
void |
setCachingAllowed(boolean cachingAllowed)
Set caching allowed flag. |
void |
setCharsetMapper(CharsetMapper mapper)
Set the Locale to character set mapper for this Context. |
void |
setCharsetMapperClass(java.lang.String mapper)
Set the Locale to character set mapper class for this Context. |
void |
setConfigured(boolean configured)
Set the "correctly configured" flag for this Context. |
void |
setCookies(boolean cookies)
Set the "use cookies for session ids" flag. |
void |
setCrossContext(boolean crossContext)
Set the "allow crossing servlet contexts" flag. |
void |
setDisplayName(java.lang.String displayName)
Set the display name of this web application. |
void |
setDistributable(boolean distributable)
Set the distributable flag for this web application. |
void |
setDocBase(java.lang.String docBase)
Set the document root for this Context. |
void |
setLoader(Loader loader)
Set the Loader with which this Context is associated. |
void |
setLoginConfig(LoginConfig config)
Set the login configuration descriptor for this web application. |
void |
setMapperClass(java.lang.String mapperClass)
Set the default Mapper class name. |
void |
setOverride(boolean override)
Set the DefaultContext override flag for this web application. |
void |
setPath(java.lang.String path)
Set the context path for this Context. |
void |
setPrivileged(boolean privileged)
Set the privileged flag for this web application. |
void |
setPublicId(java.lang.String publicId)
Set the public identifier of the deployment descriptor DTD that is currently being parsed. |
void |
setReloadable(boolean reloadable)
Set the reloadable flag for this web application. |
void |
setReplaceWelcomeFiles(boolean replaceWelcomeFiles)
Set the "replace welcome files" property. |
void |
setResources(javax.naming.directory.DirContext resources)
Set the resources DirContext object with which this Container is associated. |
void |
setSessionTimeout(int timeout)
Set the default session timeout (in minutes) for this web application. |
void |
setUseNaming(boolean useNaming)
Enables or disables naming. |
void |
setWorkDir(java.lang.String workDir)
Set the work directory for this Context. |
void |
setWrapperClass(java.lang.String wrapperClass)
Set the Java class name of the Wrapper implementation used for servlets registered in this Context. |
void |
start()
Start this Context component. |
void |
stop()
Stop this Context component. |
java.lang.String |
toString()
Return a String representation of this component. |
クラス java.lang.Object から継承したメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
インタフェース org.apache.catalina.Container から継承したメソッド |
addContainerListener, addMapper, addPropertyChangeListener, findChild, findChildren, findMapper, findMappers, getCluster, getLoader, getLogger, getManager, getName, getParent, getParentClassLoader, getRealm, getResources, map, removeChild, removeContainerListener, removeMapper, removePropertyChangeListener, setCluster, setLogger, setManager, setName, setParent, setParentClassLoader, setRealm |
フィールドの詳細 |
protected boolean cachingAllowed
コンストラクタの詳細 |
public StandardContext()
メソッドの詳細 |
public boolean isCachingAllowed()
public void setCachingAllowed(boolean cachingAllowed)
public boolean isUseNaming()
public void setUseNaming(boolean useNaming)
public boolean isFilesystemBased()
public java.lang.Object[] getApplicationListeners()
Context
内の getApplicationListeners
java.lang.IllegalStateException
- if this method is called before
this application has started, or after it has been stoppedpublic void setApplicationListeners(java.lang.Object[] listeners)
Context
内の setApplicationListeners
listeners
- The set of instantiated listener objects.public boolean getAvailable()
Context
内の getAvailable
public void setAvailable(boolean available)
Context
内の setAvailable
available
- The new application available flagpublic CharsetMapper getCharsetMapper()
Context
内の getCharsetMapper
public void setCharsetMapper(CharsetMapper mapper)
Context
内の setCharsetMapper
mapper
- The new mapperpublic boolean getConfigured()
Context
内の getConfigured
public void setConfigured(boolean configured)
Context
内の setConfigured
configured
- The new correctly configured flagpublic boolean getCookies()
Context
内の getCookies
public void setCookies(boolean cookies)
Context
内の setCookies
cookies
- The new flagpublic boolean getCrossContext()
Context
内の getCrossContext
public void setCrossContext(boolean crossContext)
Context
内の setCrossContext
crossContext
- The new cross contexts flagpublic java.lang.String getDisplayName()
Context
内の getDisplayName
public void setDisplayName(java.lang.String displayName)
Context
内の setDisplayName
displayName
- The new display namepublic boolean getDistributable()
Context
内の getDistributable
public void setDistributable(boolean distributable)
Context
内の setDistributable
distributable
- The new distributable flagpublic java.lang.String getDocBase()
Context
内の getDocBase
public void setDocBase(java.lang.String docBase)
Context
内の setDocBase
docBase
- The new document rootpublic java.lang.String getInfo()
<description>/<version>
.Container
内の getInfo
ContainerBase
内の getInfo
public void setLoader(Loader loader)
Container
内の setLoader
ContainerBase
内の setLoader
loader
- The newly associated loaderpublic LoginConfig getLoginConfig()
Context
内の getLoginConfig
public void setLoginConfig(LoginConfig config)
Context
内の setLoginConfig
config
- The new login configurationpublic java.lang.String getPath()
Context
内の getPath
public void setPath(java.lang.String path)
IMPLEMENTATION NOTE: The context path is used as the "name" of a Context, because it must be unique.
Context
内の setPath
path
- The new context pathpublic java.lang.String getPublicId()
Context
内の getPublicId
public void setPublicId(java.lang.String publicId)
Context
内の setPublicId
publicId
- The public identifierpublic boolean getReloadable()
Context
内の getReloadable
public boolean getOverride()
Context
内の getOverride
public void setReloadable(boolean reloadable)
Context
内の setReloadable
reloadable
- The new reloadable flagpublic void setOverride(boolean override)
Context
内の setOverride
override
- The new override flagpublic boolean getPrivileged()
Context
内の getPrivileged
public void setPrivileged(boolean privileged)
Context
内の setPrivileged
privileged
- The new privileged flagpublic boolean isReplaceWelcomeFiles()
public void setReplaceWelcomeFiles(boolean replaceWelcomeFiles)
replaceWelcomeFiles
- The new property valuepublic javax.servlet.ServletContext getServletContext()
Context
内の getServletContext
public int getSessionTimeout()
Context
内の getSessionTimeout
public void setSessionTimeout(int timeout)
Context
内の setSessionTimeout
timeout
- The new default session timeoutpublic java.lang.String getWrapperClass()
Context
内の getWrapperClass
public void setWrapperClass(java.lang.String wrapperClass)
Context
内の setWrapperClass
wrapperClass
- The new wrapper classpublic void setResources(javax.naming.directory.DirContext resources)
Container
内の setResources
ContainerBase
内の setResources
resources
- The newly associated DirContextpublic java.lang.String getCharsetMapperClass()
public void setCharsetMapperClass(java.lang.String mapper)
mapper
- The new mapper classpublic java.lang.String getMapperClass()
public void setMapperClass(java.lang.String mapperClass)
mapperClass
- The new default Mapper class namepublic java.lang.String getWorkDir()
public void setWorkDir(java.lang.String workDir)
workDir
- The new work directorypublic void addApplicationListener(java.lang.String listener)
Context
内の addApplicationListener
listener
- Java class name of a listener classpublic void addApplicationParameter(ApplicationParameter parameter)
Context
内の addApplicationParameter
parameter
- The new application parameterpublic void addChild(Container child)
Container
内の addChild
ContainerBase
内の addChild
child
- Child container to be addedjava.lang.IllegalArgumentException
- if the proposed container is
not an implementation of Wrapperpublic void addConstraint(SecurityConstraint constraint)
Context
内の addConstraint
public void addEjb(ContextEjb ejb)
Context
内の addEjb
ejb
- New EJB resource referencepublic void addEnvironment(ContextEnvironment environment)
Context
内の addEnvironment
environment
- New environment entrypublic void addResourceParams(ResourceParams resourceParameters)
resourceParameters
- New resource parameterspublic void addErrorPage(ErrorPage errorPage)
Context
内の addErrorPage
errorPage
- The error page definition to be addedpublic void addFilterDef(FilterDef filterDef)
Context
内の addFilterDef
filterDef
- The filter definition to be addedpublic void addFilterMap(FilterMap filterMap)
Context
内の addFilterMap
filterMap
- The filter mapping to be addedjava.lang.IllegalArgumentException
- if the specified filter name
does not match an existing filter definition, or the filter mapping
is malformedpublic void addInstanceListener(java.lang.String listener)
Context
内の addInstanceListener
listener
- Java class name of an InstanceListener classpublic void addLocalEjb(ContextLocalEjb ejb)
Context
内の addLocalEjb
ejb
- New EJB resource referencepublic void addMimeMapping(java.lang.String extension, java.lang.String mimeType)
Context
内の addMimeMapping
extension
- Filename extension being mappedmimeType
- Corresponding MIME typepublic void addParameter(java.lang.String name, java.lang.String value)
Context
内の addParameter
name
- Name of the new parametervalue
- Value of the new parameterjava.lang.IllegalArgumentException
- if the name or value is missing,
or if this context initialization parameter has already been
registeredpublic void addResource(ContextResource resource)
Context
内の addResource
resource
- New resource referencepublic void addResourceEnvRef(java.lang.String name, java.lang.String type)
Context
内の addResourceEnvRef
name
- The resource environment reference nametype
- The resource environment reference typepublic void addRoleMapping(java.lang.String role, java.lang.String link)
Context
内の addRoleMapping
role
- Security role used in the applicationlink
- Actual security role to check forpublic void addSecurityRole(java.lang.String role)
Context
内の addSecurityRole
role
- New security rolepublic void addServletMapping(java.lang.String pattern, java.lang.String name)
Context
内の addServletMapping
pattern
- URL pattern to be mappedname
- Name of the corresponding servlet to executejava.lang.IllegalArgumentException
- if the specified servlet name
is not known to this Contextpublic void addTaglib(java.lang.String uri, java.lang.String location)
Context
内の addTaglib
uri
- URI, relative to the web.xml file, of this tag librarylocation
- Location of the tag library descriptorpublic void addWelcomeFile(java.lang.String name)
Context
内の addWelcomeFile
name
- New welcome file namepublic void addWrapperLifecycle(java.lang.String listener)
Context
内の addWrapperLifecycle
listener
- Java class name of a LifecycleListener classpublic void addWrapperListener(java.lang.String listener)
Context
内の addWrapperListener
listener
- Java class name of a ContainerListener classpublic Wrapper createWrapper()
Context
内の createWrapper
public java.lang.String[] findApplicationListeners()
Context
内の findApplicationListeners
public ApplicationParameter[] findApplicationParameters()
Context
内の findApplicationParameters
public SecurityConstraint[] findConstraints()
Context
内の findConstraints
public ContextEjb findEjb(java.lang.String name)
null
.Context
内の findEjb
name
- Name of the desired EJB resource referencepublic ContextEjb[] findEjbs()
Context
内の findEjbs
public ContextEnvironment findEnvironment(java.lang.String name)
null
.Context
内の findEnvironment
name
- Name of the desired environment entrypublic ContextEnvironment[] findEnvironments()
Context
内の findEnvironments
public ErrorPage findErrorPage(int errorCode)
null
.Context
内の findErrorPage
errorCode
- Error code to look uppublic ErrorPage findErrorPage(java.lang.String exceptionType)
null
.Context
内の findErrorPage
exceptionType
- Exception type to look uppublic ErrorPage[] findErrorPages()
Context
内の findErrorPages
public FilterDef findFilterDef(java.lang.String filterName)
null
.Context
内の findFilterDef
filterName
- Filter name to look uppublic FilterDef[] findFilterDefs()
Context
内の findFilterDefs
public FilterMap[] findFilterMaps()
Context
内の findFilterMaps
public java.lang.String[] findInstanceListeners()
Context
内の findInstanceListeners
public ContextLocalEjb findLocalEjb(java.lang.String name)
null
.Context
内の findLocalEjb
name
- Name of the desired EJB resource referencepublic ContextLocalEjb[] findLocalEjbs()
Context
内の findLocalEjbs
public java.lang.String findMimeMapping(java.lang.String extension)
null
.Context
内の findMimeMapping
extension
- Extension to map to a MIME typepublic java.lang.String[] findMimeMappings()
Context
内の findMimeMappings
public java.lang.String findParameter(java.lang.String name)
null
.Context
内の findParameter
name
- Name of the parameter to returnpublic java.lang.String[] findParameters()
Context
内の findParameters
public ContextResource findResource(java.lang.String name)
null
.Context
内の findResource
name
- Name of the desired resource referencepublic java.lang.String findResourceEnvRef(java.lang.String name)
null
.Context
内の findResourceEnvRef
name
- Name of the desired resource environment referencepublic java.lang.String[] findResourceEnvRefs()
Context
内の findResourceEnvRefs
public ContextResource[] findResources()
Context
内の findResources
public java.lang.String findRoleMapping(java.lang.String role)
Context
内の findRoleMapping
role
- Security role to mappublic boolean findSecurityRole(java.lang.String role)
true
if the specified security role is defined
for this application; otherwise return false
.Context
内の findSecurityRole
role
- Security role to verifypublic java.lang.String[] findSecurityRoles()
Context
内の findSecurityRoles
public java.lang.String findServletMapping(java.lang.String pattern)
null
.Context
内の findServletMapping
pattern
- Pattern for which a mapping is requestedpublic java.lang.String[] findServletMappings()
Context
内の findServletMappings
public java.lang.String findStatusPage(int status)
null
.Context
内の findStatusPage
status
- HTTP status code to look uppublic int[] findStatusPages()
Context
内の findStatusPages
public java.lang.String findTaglib(java.lang.String uri)
null
.Context
内の findTaglib
uri
- URI, relative to the web.xml filepublic java.lang.String[] findTaglibs()
Context
内の findTaglibs
public boolean findWelcomeFile(java.lang.String name)
true
if the specified welcome file is defined
for this Context; otherwise return false
.Context
内の findWelcomeFile
name
- Welcome file to verifypublic java.lang.String[] findWelcomeFiles()
Context
内の findWelcomeFiles
public java.lang.String[] findWrapperLifecycles()
Context
内の findWrapperLifecycles
public java.lang.String[] findWrapperListeners()
Context
内の findWrapperListeners
public void invoke(Request request, Response response) throws java.io.IOException, javax.servlet.ServletException
Container
内の invoke
ContainerBase
内の invoke
request
- Request to be processedresponse
- Response to be producedjava.io.IOException
- if an input/output error occurred while
processingjavax.servlet.ServletException
- if a ServletException was thrown
while processing this requestpublic void reload()
IMPLEMENTATION NOTE: This method is designed to deal with reloads required by changes to classes in the underlying repositories of our class loader. It does not handle changes to the web application deployment descriptor. If that has occurred, you should stop this Context and create (and start) a new Context instance instead.
Context
内の reload
java.lang.IllegalStateException
- if the reloadable
property is set to false
.public void removeApplicationListener(java.lang.String listener)
Context
内の removeApplicationListener
listener
- Java class name of the listener to be removedpublic void removeApplicationParameter(java.lang.String name)
Context
内の removeApplicationParameter
name
- Name of the application parameter to removepublic void removeConstraint(SecurityConstraint constraint)
Context
内の removeConstraint
constraint
- Constraint to be removedpublic void removeEjb(java.lang.String name)
Context
内の removeEjb
name
- Name of the EJB resource reference to removepublic void removeEnvironment(java.lang.String name)
Context
内の removeEnvironment
name
- Name of the environment entry to removepublic void removeErrorPage(ErrorPage errorPage)
Context
内の removeErrorPage
errorPage
- The error page definition to be removedpublic void removeFilterDef(FilterDef filterDef)
Context
内の removeFilterDef
filterDef
- Filter definition to be removedpublic void removeFilterMap(FilterMap filterMap)
Context
内の removeFilterMap
filterMap
- The filter mapping to be removedpublic void removeInstanceListener(java.lang.String listener)
Context
内の removeInstanceListener
listener
- Class name of an InstanceListener class to be removedpublic void removeLocalEjb(java.lang.String name)
Context
内の removeLocalEjb
name
- Name of the EJB resource reference to removepublic void removeMimeMapping(java.lang.String extension)
Context
内の removeMimeMapping
extension
- Extension to remove the mapping forpublic void removeParameter(java.lang.String name)
Context
内の removeParameter
name
- Name of the parameter to removepublic void removeResource(java.lang.String name)
Context
内の removeResource
name
- Name of the resource reference to removepublic void removeResourceEnvRef(java.lang.String name)
Context
内の removeResourceEnvRef
name
- Name of the resource environment reference to removepublic void removeRoleMapping(java.lang.String role)
Context
内の removeRoleMapping
role
- Security role (as used in the application) to removepublic void removeSecurityRole(java.lang.String role)
Context
内の removeSecurityRole
role
- Security role to removepublic void removeServletMapping(java.lang.String pattern)
Context
内の removeServletMapping
pattern
- URL pattern of the mapping to removepublic void removeTaglib(java.lang.String uri)
Context
内の removeTaglib
uri
- URI, relative to the web.xml filepublic void removeWelcomeFile(java.lang.String name)
Context
内の removeWelcomeFile
name
- Name of the welcome file to be removedpublic void removeWrapperLifecycle(java.lang.String listener)
Context
内の removeWrapperLifecycle
listener
- Class name of a LifecycleListener class to be removedpublic void removeWrapperListener(java.lang.String listener)
Context
内の removeWrapperListener
listener
- Class name of a ContainerListener class to be removedpublic boolean filterStart()
true
if all filter initialization completed
successfully, or false
otherwise.public boolean filterStop()
true
if all filter finalization completed
successfully, or false
otherwise.public javax.servlet.FilterConfig findFilterConfig(java.lang.String name)
FilterConfig
for the
specified filter name, if any; otherwise return null
.name
- Name of the desired filterpublic boolean listenerStart()
true
if all listeners wre
initialized successfully, or false
otherwise.public boolean listenerStop()
true
if all events were sent successfully,
or false
otherwise.public void loadOnStartup(Container[] children)
children
- Array of wrappers for all currently defined
servlets (including those not declared load on startup)public void start() throws LifecycleException
ContainerBase
内の start
LifecycleException
- if a startup error occurspublic void stop() throws LifecycleException
ContainerBase
内の stop
LifecycleException
- if a shutdown error occurspublic java.lang.String toString()
java.lang.Object
内の toString
protected void addDefaultMapper(java.lang.String mapperClass)
ContainerBase
内の addDefaultMapper
mapperClass
- Java class name of the default Mapperprotected java.lang.String adjustURLPattern(java.lang.String urlPattern)
urlPattern
- The URL pattern to be adjusted (if needed)
and returnedprotected boolean isServlet22()
protected java.io.File engineBase()
|
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||
概要: 内部クラス | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |