Package org.apache.catalina.startup
Class HostConfig.DeployedApplication
- java.lang.Object
- 
- org.apache.catalina.startup.HostConfig.DeployedApplication
 
- 
- Enclosing class:
- HostConfig
 
 protected static class HostConfig.DeployedApplication extends java.lang.ObjectThis class represents the state of a deployed application, as well as the monitored resources.
- 
- 
Field SummaryFields Modifier and Type Field Description booleanhasDescriptorDoes this application have a context.xml descriptor file on the host's configBase?booleanloggedDirWarningIn some circumstances, such as when unpackWARs is true, a directory may be added to the appBase that is ignored.java.lang.StringnameApplication context path.java.util.LinkedHashMap<java.lang.String,java.lang.Long>redeployResourcesAny modification of the specified (static) resources will cause a redeployment of the application.java.util.HashMap<java.lang.String,java.lang.Long>reloadResourcesAny modification of the specified (static) resources will cause a reload of the application.longtimestampInstant where the application was last put in service.
 - 
Constructor SummaryConstructors Constructor Description DeployedApplication(java.lang.String name, boolean hasDescriptor)
 
- 
- 
- 
Field Detail- 
namepublic final java.lang.String name Application context path. The assertion is that (host.getChild(name) != null).
 - 
hasDescriptorpublic final boolean hasDescriptor Does this application have a context.xml descriptor file on the host's configBase?
 - 
redeployResourcespublic final java.util.LinkedHashMap<java.lang.String,java.lang.Long> 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.
 - 
reloadResourcespublic final java.util.HashMap<java.lang.String,java.lang.Long> 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.
 - 
timestamppublic long timestamp Instant where the application was last put in service.
 - 
loggedDirWarningpublic boolean loggedDirWarning In some circumstances, such as when unpackWARs is true, a directory may be added to the appBase that is ignored. This flag indicates that the user has been warned so that the warning is not logged on every run of the auto deployer.
 
- 
 
-