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,java.io.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 bothDeployeds andEmbeddedDeployeds. Deployeds are configuration items (CIs) that representDeployables CIs in their deployed form.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCONTAINER_FIELDstatic java.lang.StringDEPLOYABLE_FIELD-
Fields inherited from interface com.xebialabs.deployit.plugin.api.udm.ConfigurationItem
SYNTHETIC_PROPERTIES_FIELD, TYPE_FIELD
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CgetContainer()DgetDeployable()voidsetContainer(C container)voidsetDeployable(D deployable)-
Methods inherited from interface com.xebialabs.deployit.plugin.api.udm.ConfigurationItem
get$internalId, get$securedCi, get$validationMessages, getId, getName, getProperty, getType, hasProperty, setId, setProperty
-
-
-
-
Field Detail
-
DEPLOYABLE_FIELD
static final java.lang.String DEPLOYABLE_FIELD
- See Also:
- Constant Field Values
-
CONTAINER_FIELD
static final java.lang.String CONTAINER_FIELD
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDeployable
D getDeployable()
- Returns:
- The associated
DeployableCI.
-
setDeployable
void setDeployable(D deployable)
- Parameters:
deployable- The associatedDeployableCI.
-
-