Class Application
- java.lang.Object
-
- com.xebialabs.deployit.plugin.api.udm.base.BaseConfigurationItem
-
- com.xebialabs.deployit.plugin.api.udm.Application
-
- All Implemented Interfaces:
ConfigurationItem
,java.io.Serializable
,java.lang.Comparable<BaseConfigurationItem>
@Metadata(description="An application. Each version of the application is a separate package.", root=APPLICATIONS) @TypeIcon("icons/types/udm.Application.svg") public class Application extends BaseConfigurationItem
Conceptually, an Application is a configuration item (CI) representing a real-world application, that can be deployed on a specific middleware.Technically, an Application is a group of all the associated
Version
s. A Version (sometimes also called package) can be either aDeploymentPackage
or aCompositePackage
, and contains a collection ofDeployableArtifact
s and resource specifications. Such a package can be deployed on aContainer
.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.xebialabs.deployit.plugin.api.udm.base.BaseConfigurationItem
id, syntheticProperties, type
-
Fields inherited from interface com.xebialabs.deployit.plugin.api.udm.ConfigurationItem
SYNTHETIC_PROPERTIES_FIELD, TYPE_FIELD
-
-
Constructor Summary
Constructors Constructor Description Application()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getLastVersion()
void
setLastVersion(java.lang.String lastVersion)
-
Methods inherited from class com.xebialabs.deployit.plugin.api.udm.base.BaseConfigurationItem
compareTo, equals, get$ciAttributes, get$directoryReference, get$externalProperties, get$internalId, get$referenceId, get$securedCi, get$securedDirectoryReference, get$token, get$validationMessages, getId, getName, getProperty, getPropertyDescriptor, getType, hashCode, hasProperty, set$ciAttributes, set$directoryReference, set$externalProperties, set$internalId, set$referenceId, set$securedCi, set$securedDirectoryReference, set$token, set$validationMessages, setId, setProperty, setType, toString
-
-
-
-
Method Detail
-
getLastVersion
public java.lang.String getLastVersion()
- Returns:
- The latest application version number as the highest udm.Version name sorted in lexicographical ordering.
-
setLastVersion
public void setLastVersion(java.lang.String lastVersion)
- Parameters:
lastVersion
- The latest version number of the application.
-
-