Uses of Class
org.codehaus.cargo.container.deployer.DeployerType
-
-
Uses of DeployerType in org.codehaus.cargo.container.deployer
Fields in org.codehaus.cargo.container.deployer declared as DeployerType Modifier and Type Field Description static DeployerType
DeployerType. EMBEDDED
A deployer type to deploy to an embedded local container.static DeployerType
DeployerType. INSTALLED
A deployer type to deploy to an installed local container.static DeployerType
DeployerType. REMOTE
A deployer type to deploy to a remote container.Methods in org.codehaus.cargo.container.deployer that return DeployerType Modifier and Type Method Description DeployerType
Deployer. getType()
static DeployerType
DeployerType. toType(String typeAsString)
Transform a type represented as a string into aDeployerType
object.static DeployerType
DeployerType. toType(ContainerType containerType)
Converts aContainerType
to the correspondingDeployerType
. -
Uses of DeployerType in org.codehaus.cargo.container.glassfish.internal
Methods in org.codehaus.cargo.container.glassfish.internal that return DeployerType Modifier and Type Method Description DeployerType
AbstractGlassFishInstalledLocalDeployer. getType()
-
Uses of DeployerType in org.codehaus.cargo.container.jetty.internal
Methods in org.codehaus.cargo.container.jetty.internal that return DeployerType Modifier and Type Method Description DeployerType
AbstractJettyEmbeddedLocalDeployer. getType()
-
Uses of DeployerType in org.codehaus.cargo.container.spi.deployer
Methods in org.codehaus.cargo.container.spi.deployer that return DeployerType Modifier and Type Method Description DeployerType
AbstractEmbeddedLocalDeployer. getType()
DeployerType
AbstractInstalledLocalDeployer. getType()
DeployerType
AbstractRemoteDeployer. getType()
-
Uses of DeployerType in org.codehaus.cargo.container.tomcat
Methods in org.codehaus.cargo.container.tomcat that return DeployerType Modifier and Type Method Description DeployerType
TomcatEmbeddedLocalDeployer. getType()
-
Uses of DeployerType in org.codehaus.cargo.container.tomcat.internal
Methods in org.codehaus.cargo.container.tomcat.internal that return DeployerType Modifier and Type Method Description DeployerType
AbstractTomcatManagerInstalledLocalDeployer. getType()
DeployerType
AbstractTomcatRemoteDeployer. getType()
-
Uses of DeployerType in org.codehaus.cargo.container.websphere
Methods in org.codehaus.cargo.container.websphere that return DeployerType Modifier and Type Method Description DeployerType
WebSphere85xInstalledLocalDeployer. getType()
-
Uses of DeployerType in org.codehaus.cargo.generic.deployer
Methods in org.codehaus.cargo.generic.deployer with parameters of type DeployerType Modifier and Type Method Description Deployer
DefaultDeployerFactory. createDeployer(Container container, DeployerType deployerType)
Create aDeployer
instance matching the specified container and type.Deployer
DeployerFactory. createDeployer(Container container, DeployerType deployerType)
Create aDeployer
instance matching the specified container and type.Class<? extends Deployer>
DefaultDeployerFactory. getDeployerClass(String containerId, DeployerType deployerType)
Class<? extends Deployer>
DeployerFactory. getDeployerClass(String containerId, DeployerType deployerType)
boolean
DefaultDeployerFactory. isDeployerRegistered(String containerId, DeployerType deployerType)
boolean
DeployerFactory. isDeployerRegistered(String containerId, DeployerType deployerType)
void
DefaultDeployerFactory. registerDeployer(String containerId, DeployerType deployerType, Class<? extends Deployer> deployerClass)
Registers aDeployer
implementation.void
DefaultDeployerFactory. registerDeployer(String containerId, DeployerType deployerType, String deployerClassName)
Registers a deployer using a class specified as a String.void
DeployerFactory. registerDeployer(String containerId, DeployerType deployerType, Class<? extends Deployer> deployerClass)
Registers aDeployer
implementation.
-