Interface Deployed<D extends Deployable,C extends Container>
-
- Type Parameters:
D
- Something that is aDeployable
C
- 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 representDeployable
s 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()
C
getContainer()
Duplicated fromEmbeddedDeployedContainer
to retain binary compatibility.D
getDeployable()
Duplicated fromEmbeddedDeployedContainer
to retain binary compatibility.void
setBoundConfigurationItems(java.util.Set<ConfigurationItem> boundConfigurationItems)
void
setContainer(C container)
Duplicated fromEmbeddedDeployedContainer
to retain binary compatibility.void
setDeployable(D deployable)
Duplicated fromEmbeddedDeployedContainer
to retain binary compatibility.-
Methods inherited from interface com.xebialabs.deployit.plugin.api.udm.ConfigurationItem
get$directoryReference, get$internalId, get$securedCi, get$validationMessages, getId, getName, getProperty, getType, hasProperty, setId, setProperty
-
-
-
-
Method Detail
-
getDeployable
D getDeployable()
Duplicated fromEmbeddedDeployedContainer
to retain binary compatibility.- Specified by:
getDeployable
in interfaceEmbeddedDeployedContainer<D extends Deployable,C extends Container>
- Returns:
- The associated
Deployable
CI.
-
setDeployable
void setDeployable(D deployable)
Duplicated fromEmbeddedDeployedContainer
to retain binary compatibility.- Specified by:
setDeployable
in interfaceEmbeddedDeployedContainer<D extends Deployable,C extends Container>
- Parameters:
deployable
- The associatedDeployable
CI.
-
getContainer
C getContainer()
Duplicated fromEmbeddedDeployedContainer
to retain binary compatibility.- Specified by:
getContainer
in interfaceEmbeddedDeployedContainer<D extends Deployable,C extends Container>
- Returns:
- The target
Container
.
-
setContainer
void setContainer(C container)
Duplicated fromEmbeddedDeployedContainer
to retain binary compatibility.- Specified by:
setContainer
in 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()
-
-