Interface JBossInstalledLocalContainer
-
- All Superinterfaces:
Container
,InstalledLocalContainer
,LocalContainer
,Loggable
,RunnableContainer
,SpawnedContainer
- All Known Subinterfaces:
JBoss5xInstalledLocalContainer
- All Known Implementing Classes:
AbstractJBoss5xInstalledLocalContainer
,AbstractJBossInstalledLocalContainer
,JBoss3xInstalledLocalContainer
,JBoss42xInstalledLocalContainer
,JBoss4xInstalledLocalContainer
,JBoss51xInstalledLocalContainer
,JBoss5xInstalledLocalContainer
,JBoss61xInstalledLocalContainer
,JBoss6xInstalledLocalContainer
public interface JBossInstalledLocalContainer extends InstalledLocalContainer
All JBoss container implementation must implement this interface which provides method to find out the location of configuration files located in the JBoss installation source tree.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getConfDir(String configurationName)
String
getDeployDir(String configurationName)
String
getLibDir(String configurationName)
-
Methods inherited from interface org.codehaus.cargo.container.Container
getCapability, getId, getName, getState, getType
-
Methods inherited from interface org.codehaus.cargo.container.InstalledLocalContainer
getHome, setHome
-
Methods inherited from interface org.codehaus.cargo.container.LocalContainer
getConfiguration, getFileHandler, setConfiguration, setFileHandler
-
Methods inherited from interface org.codehaus.cargo.container.internal.RunnableContainer
getOutput, getTimeout, isAppend, restart, setAppend, setOutput, setTimeout, start, stop
-
Methods inherited from interface org.codehaus.cargo.container.internal.SpawnedContainer
addExtraClasspath, addSharedClasspath, getExtraClasspath, getJvmLauncherFactory, getSharedClasspath, getSystemProperties, setExtraClasspath, setJvmLauncherFactory, setSharedClasspath, setSystemProperties
-
-
-
-
Method Detail
-
getConfDir
String getConfDir(String configurationName)
- Parameters:
configurationName
- the JBoss server configuration name for which to return the conf dir- Returns:
- The conf directory located under the container's home installation directory
-
getLibDir
String getLibDir(String configurationName)
- Parameters:
configurationName
- the JBoss server configuration name for which to return the conf dir- Returns:
- The lib directory located under the container's home installation directory
-
-