Interface EmbeddedDeployedContainer<D extends ConfigurationItem,C extends ConfigurationItem>
- Type Parameters:
D
- The type for the deployable CI.C
- The type for the container CI.
- All Superinterfaces:
ConfigurationItem
,Serializable
- All Known Subinterfaces:
AppliedProvisioner<D>
,Deployed<D,
,C> EmbeddedDeployed<D,
,C> Provisioned<D,
C>
- All Known Implementing Classes:
BaseAppliedProvisioner
,BaseAppliedProvisionerArtifact
,BaseDeployed
,BaseDeployedArtifact
,BaseDeployedContainer
,BaseDeployedInfrastructureAsCode
,BaseEmbeddedDeployed
,BaseProvisioned
,BaseProvisionedContainer
,EmbeddedDeployedArtifact
public interface EmbeddedDeployedContainer<D extends ConfigurationItem,C extends ConfigurationItem>
extends ConfigurationItem
A super type for both
Deployed
s and EmbeddedDeployed
s.
Deployeds are configuration items (CIs) that represent Deployable
s CIs in their deployed form.-
Field Summary
Fields inherited from interface com.xebialabs.deployit.plugin.api.udm.ConfigurationItem
SYNTHETIC_PROPERTIES_FIELD, TYPE_FIELD
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setContainer
(C container) void
setDeployable
(D deployable) 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
-
Field Details
-
DEPLOYABLE_FIELD
- See Also:
-
CONTAINER_FIELD
- See Also:
-
-
Method Details
-
getDeployable
D getDeployable()- Returns:
- The associated
Deployable
CI.
-
setDeployable
- Parameters:
deployable
- The associatedDeployable
CI.
-
getContainer
C getContainer()- Returns:
- The target
Container
.
-
setContainer
- Parameters:
container
- The targetContainer
.
-