Interface Deployed<D extends Deployable,C extends Container>
- 
- Type Parameters:
 D- Something that is aDeployableC- Something that is aContainer
- All Superinterfaces:
 ConfigurationItem,EmbeddedDeployedContainer<D,C>,java.io.Serializable
- All Known Subinterfaces:
 Provisioned<D,C>
- All Known Implementing Classes:
 BaseDeployed,BaseDeployedArtifact,BaseDeployedContainer,BaseDeployedInfrastructureAsCode,BaseProvisioned,BaseProvisionedContainer
@TypeIcon("icons/types/udm.Deployed.svg") public interface Deployed<D extends Deployable,C extends Container> extends EmbeddedDeployedContainer<D,C>
Deployeds are configuration items (CIs) that representDeployables CIs in their deployed form on the targetContainer. Deployeds go through the following life-cycle:- The deployed is created on a target container for the first time in an initial deployment.
 - The deployed is upgraded to a new version in an upgrade deployment.
 - The deployed is removed from the target container when it is undeployed.
 
 
- 
- 
Field Summary
- 
Fields inherited from interface com.xebialabs.deployit.plugin.api.udm.ConfigurationItem
SYNTHETIC_PROPERTIES_FIELD, TYPE_FIELD 
- 
Fields inherited from interface com.xebialabs.deployit.plugin.api.udm.EmbeddedDeployedContainer
CONTAINER_FIELD, DEPLOYABLE_FIELD 
 - 
 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<ConfigurationItem>getBoundConfigurationItems()CgetContainer()Duplicated fromEmbeddedDeployedContainerto retain binary compatibility.DgetDeployable()Duplicated fromEmbeddedDeployedContainerto retain binary compatibility.voidsetBoundConfigurationItems(java.util.Set<ConfigurationItem> boundConfigurationItems)voidsetContainer(C container)Duplicated fromEmbeddedDeployedContainerto retain binary compatibility.voidsetDeployable(D deployable)Duplicated fromEmbeddedDeployedContainerto retain binary compatibility.- 
Methods inherited from interface com.xebialabs.deployit.plugin.api.udm.ConfigurationItem
get$directoryReference, get$internalId, get$referenceId, get$securedCi, get$securedDirectoryReference, get$validationMessages, getId, getName, getProperty, getType, hasProperty, setId, setProperty 
 - 
 
 - 
 
- 
- 
Method Detail
- 
getDeployable
D getDeployable()
Duplicated fromEmbeddedDeployedContainerto retain binary compatibility.- Specified by:
 getDeployablein interfaceEmbeddedDeployedContainer<D extends Deployable,C extends Container>- Returns:
 - The associated 
DeployableCI. 
 
- 
setDeployable
void setDeployable(D deployable)
Duplicated fromEmbeddedDeployedContainerto retain binary compatibility.- Specified by:
 setDeployablein interfaceEmbeddedDeployedContainer<D extends Deployable,C extends Container>- Parameters:
 deployable- The associatedDeployableCI.
 
- 
getContainer
C getContainer()
Duplicated fromEmbeddedDeployedContainerto retain binary compatibility.- Specified by:
 getContainerin interfaceEmbeddedDeployedContainer<D extends Deployable,C extends Container>- Returns:
 - The target 
Container. 
 
- 
setContainer
void setContainer(C container)
Duplicated fromEmbeddedDeployedContainerto retain binary compatibility.- Specified by:
 setContainerin interfaceEmbeddedDeployedContainer<D extends Deployable,C extends Container>- Parameters:
 container- The targetContainer.
 
- 
setBoundConfigurationItems
void setBoundConfigurationItems(java.util.Set<ConfigurationItem> boundConfigurationItems)
 
- 
getBoundConfigurationItems
java.util.Set<ConfigurationItem> getBoundConfigurationItems()
 
 - 
 
 -