Uses of Interface
org.codehaus.cargo.container.deployer.DeployableMonitor
-
-
Uses of DeployableMonitor in org.codehaus.cargo.ant
Methods in org.codehaus.cargo.ant that return DeployableMonitor Modifier and Type Method Description DeployableMonitor
DeployableElement. createDeployableMonitor()
-
Uses of DeployableMonitor in org.codehaus.cargo.container.deployer
Classes in org.codehaus.cargo.container.deployer that implement DeployableMonitor Modifier and Type Class Description class
AbstractDeployableMonitor
Common properties and configuration for deployable monitors.class
URLDeployableMonitor
Monitor that verifies if aDeployable
is deployed by pinging a URL provided by the user.class
UrlPathDeployableMonitor
Monitor that verifies if aDeployable
is deployed by pinging a URL constructed from URL path (provided by the user) and other parameters provided by container configuration.Methods in org.codehaus.cargo.container.deployer with parameters of type DeployableMonitor Modifier and Type Method Description void
Deployer. deploy(Deployable deployable, DeployableMonitor monitor)
Deploy aDeployable
to the running container and make it available for requests.void
Deployer. redeploy(Deployable deployable, DeployableMonitor monitor)
Redeploy aDeployable
already deployed to the running container.void
Deployer. start(Deployable deployable, DeployableMonitor monitor)
Starts aDeployable
that is already deployed in the running container but that is not servicing requests.void
Deployer. stop(Deployable deployable, DeployableMonitor monitor)
Stop aDeployable
that is already deployed in the running container in order to prevent it from servicing requests.void
Deployer. undeploy(Deployable deployable, DeployableMonitor monitor)
Undeploy aDeployable
to the running container. -
Uses of DeployableMonitor in org.codehaus.cargo.container.geronimo
Methods in org.codehaus.cargo.container.geronimo with parameters of type DeployableMonitor Modifier and Type Method Description void
GeronimoInstalledLocalDeployer. redeploy(Deployable deployable, DeployableMonitor monitor)
Redeploy aDeployable
already deployed to the running container. -
Uses of DeployableMonitor in org.codehaus.cargo.container.glassfish.internal
Methods in org.codehaus.cargo.container.glassfish.internal with parameters of type DeployableMonitor Modifier and Type Method Description void
AbstractGlassFishInstalledLocalDeployer. redeploy(Deployable deployable, DeployableMonitor monitor)
Redeploy aDeployable
already deployed to the running container. -
Uses of DeployableMonitor in org.codehaus.cargo.container.jboss
Methods in org.codehaus.cargo.container.jboss with parameters of type DeployableMonitor Modifier and Type Method Description void
JBoss4xRemoteDeployer. redeploy(Deployable deployable, DeployableMonitor monitor)
Redeploy aDeployable
already deployed to the running container. -
Uses of DeployableMonitor in org.codehaus.cargo.container.jonas.internal
Methods in org.codehaus.cargo.container.jonas.internal with parameters of type DeployableMonitor Modifier and Type Method Description void
AbstractJonas5xRemoteDeployer. redeploy(Deployable deployable, DeployableMonitor monitor)
Redeploy aDeployable
already deployed to the running container. -
Uses of DeployableMonitor in org.codehaus.cargo.container.spi.deployer
Methods in org.codehaus.cargo.container.spi.deployer with parameters of type DeployableMonitor Modifier and Type Method Description void
AbstractDeployer. deploy(Deployable deployable, DeployableMonitor monitor)
Deploy aDeployable
to the running container and make it available for requests.void
AbstractDeployer. redeploy(Deployable deployable, DeployableMonitor monitor)
Redeploy aDeployable
already deployed to the running container.void
AbstractDeployer. start(Deployable deployable, DeployableMonitor monitor)
Starts aDeployable
that is already deployed in the running container but that is not servicing requests.void
AbstractDeployer. stop(Deployable deployable, DeployableMonitor monitor)
Stop aDeployable
that is already deployed in the running container in order to prevent it from servicing requests.void
AbstractDeployer. undeploy(Deployable deployable, DeployableMonitor monitor)
Undeploy aDeployable
to the running container.Constructors in org.codehaus.cargo.container.spi.deployer with parameters of type DeployableMonitor Constructor Description DeployerWatchdog(DeployableMonitor monitor)
-
Uses of DeployableMonitor in org.codehaus.cargo.container.tomcat
Methods in org.codehaus.cargo.container.tomcat with parameters of type DeployableMonitor Modifier and Type Method Description void
TomcatEmbeddedLocalDeployer. redeploy(Deployable deployable, DeployableMonitor monitor)
Redeploy aDeployable
already deployed to the running container. -
Uses of DeployableMonitor in org.codehaus.cargo.container.tomcat.internal
Methods in org.codehaus.cargo.container.tomcat.internal with parameters of type DeployableMonitor Modifier and Type Method Description void
AbstractTomcatManagerDeployer. redeploy(Deployable deployable, DeployableMonitor monitor)
Redeploy aDeployable
already deployed to the running container. -
Uses of DeployableMonitor in org.codehaus.cargo.maven3
Methods in org.codehaus.cargo.maven3 with parameters of type DeployableMonitor Modifier and Type Method Description protected abstract void
AbstractDeployerMojo. performDeployerActionOnSingleDeployable(Deployer deployer, Deployable deployable, DeployableMonitor monitor)
Perform a deployer action on a single deployable.protected void
DeployerDeployMojo. performDeployerActionOnSingleDeployable(Deployer deployer, Deployable deployable, DeployableMonitor monitor)
protected void
DeployerRedeployMojo. performDeployerActionOnSingleDeployable(Deployer deployer, Deployable deployable, DeployableMonitor monitor)
protected void
DeployerStartMojo. performDeployerActionOnSingleDeployable(Deployer deployer, Deployable deployable, DeployableMonitor monitor)
protected void
DeployerStopMojo. performDeployerActionOnSingleDeployable(Deployer deployer, Deployable deployable, DeployableMonitor monitor)
protected void
DeployerUndeployMojo. performDeployerActionOnSingleDeployable(Deployer deployer, Deployable deployable, DeployableMonitor monitor)
Constructors in org.codehaus.cargo.maven3 with parameters of type DeployableMonitor Constructor Description DeployerListener(DeployableMonitor monitor)
Saves all attributes. -
Uses of DeployableMonitor in org.codehaus.cargo.maven3.deployer
Methods in org.codehaus.cargo.maven3.deployer that return DeployableMonitor Modifier and Type Method Description DeployableMonitor
DefaultDeployableMonitorFactory. createDeployableMonitor(Container container, Deployable deployable)
Create aDeployableMonitor
instance which is able to check status of deployable using passed parameters, for example if Deployable has complete URL defined then is used URLDeployableMonitor.DeployableMonitor
DeployableMonitorFactory. createDeployableMonitor(Container container, Deployable deployable)
Create aDeployableMonitor
instance which is able to check status of deployable using passed parameters, for example if Deployable has complete URL defined then is used URLDeployableMonitor.
-