com.xebialabs.deployit.plugin.api.udm
Interface Deployed<D extends Deployable,C extends Container>
- Type Parameters:
D - Something that is a DeployableC - Something that is a Container
- All Superinterfaces:
- ConfigurationItem, java.io.Serializable
- All Known Implementing Classes:
- BaseDeployed, BaseDeployedArtifact
public interface Deployed<D extends Deployable,C extends Container>
- extends ConfigurationItem
Resembles a Deployed item.
We require the following contract:
- the Deployable is to be stored in a field called 'deployable'
- the Container is to be stored in a field called 'container'
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
getDeployable
D getDeployable()
setDeployable
void setDeployable(D deployable)
getContainer
C getContainer()
setContainer
void setContainer(C container)