org.apache.catalina.startup
Class HostConfig.DeployedApplication
protected
class
HostConfig.DeployedApplication
extends Object
This class represents the state of a deployed application, as well as
the monitored resources.
Field Summary |
String | name
Application context path. |
LinkedHashMap | redeployResources
Any modification of the specified (static) resources will cause a
redeployment of the application. |
HashMap | reloadResources
Any modification of the specified (static) resources will cause a
reload of the application. |
long | timestamp
Instant where the application was last put in service. |
public String name
Application context path. The assertion is that
(host.getChild(name) != null).
public LinkedHashMap redeployResources
Any modification of the specified (static) resources will cause a
redeployment of the application. If any of the specified resources is
removed, the application will be undeployed. Typically, this will
contain resources like the context.xml file, a compressed WAR path.
The value is the last modification time.
public HashMap reloadResources
Any modification of the specified (static) resources will cause a
reload of the application. This will typically contain resources
such as the web.xml of a webapp, but can be configured to contain
additional descriptors.
The value is the last modification time.
public long timestamp
Instant where the application was last put in service.
public DeployedApplication(String name)
Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.