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
Stringname
Application context path.
LinkedHashMapredeployResources
Any modification of the specified (static) resources will cause a redeployment of the application.
HashMapreloadResources
Any modification of the specified (static) resources will cause a reload of the application.
longtimestamp
Instant where the application was last put in service.
Constructor Summary
DeployedApplication(String name)

Field Detail

name

public String name
Application context path. The assertion is that (host.getChild(name) != null).

redeployResources

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.

reloadResources

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.

timestamp

public long timestamp
Instant where the application was last put in service.

Constructor Detail

DeployedApplication

public DeployedApplication(String name)
Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.