Package fish.payara.api.admin.config
Interface ApplicationDeploymentTime
-
- All Superinterfaces:
ConfigBeanProxy,jakarta.validation.Payload
- All Known Subinterfaces:
Application
public interface ApplicationDeploymentTime extends ConfigBeanProxy, jakarta.validation.Payload
An configured element which shows the time taken to deploy the application in seconds, and the time at which it occurred.- Since:
- 4.1.2.173
- Author:
- Matt Gill, Jonathan Coustick
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
ConfigBeanProxy.Duck
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDeploymentTime()Time taken to deploy the application.StringgetTimeDeployed()The time when the application was deployedvoidsetDeploymentTime(String value)voidsetTimeDeployed(String value)-
Methods inherited from interface org.jvnet.hk2.config.ConfigBeanProxy
createChild, deepCopy, getParent, getParent
-
-
-
-
Method Detail
-
getDeploymentTime
String getDeploymentTime()
Time taken to deploy the application.- Returns:
- deployment time
-
setDeploymentTime
void setDeploymentTime(String value) throws PropertyVetoException
- Throws:
PropertyVetoException
-
getTimeDeployed
String getTimeDeployed()
The time when the application was deployed- Returns:
- milliseconds since the epoch
- Since:
- 4.1.2.174
-
setTimeDeployed
void setTimeDeployed(String value) throws PropertyVetoException
- Throws:
PropertyVetoException
-
-