Class Deployment
- java.lang.Object
-
- ch.mobi.mobitor.domain.deployment.Deployment
-
- All Implemented Interfaces:
Serializable
public class Deployment extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Deployment()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDeploymentApplication(DeploymentApplication deploymentApplication)voidaddDeploymentParameter(String key, String value)List<DeploymentApplication>getApplications()LonggetDeploymentDate()StringgetEnvironment()StringgetFirstApplicationVersion()StringgetId()StringgetParameter(String key)Map<String,String>getParameters()StringgetRequestUser()StringgetServerName()StringgetState()booleanisSuccessful()voidsetDeploymentDate(Long deploymentDate)voidsetEnvironment(String environment)voidsetId(String id)voidsetRequestUser(String requestUser)voidsetServerName(String serverName)voidsetState(String state)
-
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getServerName
public String getServerName()
-
setServerName
public void setServerName(String serverName)
-
getEnvironment
public String getEnvironment()
-
setEnvironment
public void setEnvironment(String environment)
-
getRequestUser
public String getRequestUser()
-
setRequestUser
public void setRequestUser(String requestUser)
-
getDeploymentDate
public Long getDeploymentDate()
-
setDeploymentDate
public void setDeploymentDate(Long deploymentDate)
-
getState
public String getState()
-
setState
public void setState(String state)
-
getApplications
public List<DeploymentApplication> getApplications()
-
addDeploymentApplication
public void addDeploymentApplication(DeploymentApplication deploymentApplication)
-
isSuccessful
public boolean isSuccessful()
-
getFirstApplicationVersion
public String getFirstApplicationVersion()
-
-