public interface DeployableFactory
| Modifier and Type | Method and Description |
|---|---|
Deployable |
createDeployable(String containerId,
String deployableLocation,
DeployableType deployableType)
Creates an Deployable instance, wrapping a file or a directory.
|
boolean |
isDeployableRegistered(String containerId,
DeployableType deployableType)
Checks if the deployable specified by the deployable type is registered for a specific
container.
|
void |
registerDeployable(String containerId,
DeployableType deployableType,
Class<? extends Deployable> deployableClass)
Registers a deployable implementation against a container.
|
void registerDeployable(String containerId, DeployableType deployableType, Class<? extends Deployable> deployableClass)
containerId - the container id attached to this deployable classdeployableType - the type to differentiate this deployable from others for the specified
containerdeployableClass - the deployable implementation class to registerboolean isDeployableRegistered(String containerId, DeployableType deployableType)
containerId - the container id attached to the deployable type classdeployableType - the type to differentiate this deployable from others for the specified
containerDeployable createDeployable(String containerId, String deployableLocation, DeployableType deployableType)
containerId - the container id for which to create the deployable fordeployableLocation - the location of the deployable being wrapped, which must point to
a file or a directory (for an expanded deployable)deployableType - the deployable type to createDeployable instanceCopyright © 2004–2015 Github. All rights reserved.