Package org.codehaus.cargo.tools.daemon
Class DaemonStart
- java.lang.Object
-
- org.codehaus.cargo.tools.daemon.DaemonStart
-
public class DaemonStart extends Object
Represents a daemon start request
-
-
Constructor Summary
Constructors Constructor Description DaemonStart()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getAdditionalClasspathEntries()InstalledLocalContainergetContainer()List<Deployable>getDeployables()StringgetHandleId()StringgetInstallerZipFile()StringgetLogFile()booleanisAutostart()voidsetAdditionalClasspathEntries(List<String> additionalClasspathEntries)voidsetAutostart(boolean autostart)voidsetContainer(InstalledLocalContainer container)voidsetDeployables(List<Deployable> deployables)voidsetHandleId(String handleId)voidsetInstallerZipFile(String installerZipFile)voidsetLogFile(String logFile)
-
-
-
Method Detail
-
getHandleId
public String getHandleId()
- Returns:
- the unique identifier of the container to start.
-
setHandleId
public void setHandleId(String handleId)
- Parameters:
handleId- The unique identifier of the container to start.
-
getAdditionalClasspathEntries
public List<String> getAdditionalClasspathEntries()
- Returns:
- the additional classpath entries.
-
setAdditionalClasspathEntries
public void setAdditionalClasspathEntries(List<String> additionalClasspathEntries)
- Parameters:
additionalClasspathEntries- The additional classpath entries to set for the container.
-
isAutostart
public boolean isAutostart()
- Returns:
- true if the container should auto start.
-
setAutostart
public void setAutostart(boolean autostart)
- Parameters:
autostart- True if the container should auto start.
-
getContainer
public InstalledLocalContainer getContainer()
- Returns:
- the container to start
-
setContainer
public void setContainer(InstalledLocalContainer container)
- Parameters:
container- The container to start
-
getDeployables
public List<Deployable> getDeployables()
- Returns:
- the deployables to deploy
-
setDeployables
public void setDeployables(List<Deployable> deployables)
- Parameters:
deployables- The deployables to deploy
-
getInstallerZipFile
public String getInstallerZipFile()
- Returns:
- the zip file to install
-
setInstallerZipFile
public void setInstallerZipFile(String installerZipFile)
- Parameters:
installerZipFile- The zip file to install
-
getLogFile
public String getLogFile()
- Returns:
- the log file where to save the Cargo log
-
setLogFile
public void setLogFile(String logFile)
- Parameters:
logFile- The log file where to save the Cargo log
-
-