Class Jetty6xStandaloneLocalConfiguration
- java.lang.Object
-
- org.codehaus.cargo.util.log.LoggedObject
-
- org.codehaus.cargo.container.spi.configuration.AbstractConfiguration
-
- org.codehaus.cargo.container.spi.configuration.AbstractLocalConfiguration
-
- org.codehaus.cargo.container.spi.configuration.AbstractStandaloneLocalConfiguration
-
- org.codehaus.cargo.container.jetty.internal.AbstractJettyStandaloneLocalConfiguration
-
- org.codehaus.cargo.container.jetty.Jetty6xStandaloneLocalConfiguration
-
- All Implemented Interfaces:
Configuration,LocalConfiguration,StandaloneLocalConfiguration,ContainerConfiguration,Loggable
- Direct Known Subclasses:
Jetty7xStandaloneLocalConfiguration
public class Jetty6xStandaloneLocalConfiguration extends AbstractJettyStandaloneLocalConfiguration
Jetty 6.x standaloneContainerConfigurationimplementation.
-
-
Field Summary
-
Fields inherited from class org.codehaus.cargo.container.spi.configuration.AbstractLocalConfiguration
RESOURCE_PATH
-
-
Constructor Summary
Constructors Constructor Description Jetty6xStandaloneLocalConfiguration(String dir)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidaddUseFileMappedBufferXmlReplacement(String webDefaultXmlFile)Add theJettyPropertySet.USE_FILE_MAPPED_BUFFERproperty XML replacement for the givenwebdefault.xmlfile name.protected AbstractCopyingInstalledLocalDeployercreateDeployer(InstalledLocalContainer container)Creates a new deployer for the specified container.voiddoConfigure(LocalContainer container)Implementation ofLocalConfiguration.configure(LocalContainer)that all local configuration using this class must implement.ConfigurationCapabilitygetCapability()protected String[]getWebdefaultFiles(InstalledLocalContainer container)Get the Jettywebdefault.xmlfile name(s) for the given local container.StringtoString()-
Methods inherited from class org.codehaus.cargo.container.spi.configuration.AbstractStandaloneLocalConfiguration
addXmlReplacement, addXmlReplacement, addXmlReplacement, addXmlReplacement, configureFiles, getType, getXmlReplacements, performXmlReplacements, removeXmlReplacement, removeXmlReplacement, replaceInFile, setupConfigurationDir, verify
-
Methods inherited from class org.codehaus.cargo.container.spi.configuration.AbstractLocalConfiguration
addDataSource, addDataSourcesFromProperties, addDeployable, addResource, addResourcesFromProperties, addUser, addUsersFromProperties, applyPortOffset, applyPortOffset, collectUnsupportedDataSourcesAndThrowException, collectUnsupportedResourcesAndThrowException, configure, flagOffsetApplied, getDataSources, getDeployables, getDestDirectoryLocation, getDestFileLocation, getFileHandler, getFileProperties, getHome, getPropertyValue, getReplacements, getResources, getResourceUtils, getUsers, isOffsetApplied, isOffsetApplied, parsePropertiesForPendingConfiguration, revertPortOffset, revertPortOffset, setConfigFileProperty, setFileHandler, setFileProperty, setLogger
-
Methods inherited from class org.codehaus.cargo.container.spi.configuration.AbstractConfiguration
getProperties, setProperty
-
Methods inherited from class org.codehaus.cargo.util.log.LoggedObject
getLogger
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.codehaus.cargo.container.configuration.Configuration
getProperties, getPropertyValue, setProperty
-
Methods inherited from interface org.codehaus.cargo.container.configuration.LocalConfiguration
addDataSource, addDeployable, addResource, addUser, applyPortOffset, configure, getDataSources, getDeployables, getFileHandler, getFileProperties, getHome, getResources, getUsers, isOffsetApplied, revertPortOffset, setConfigFileProperty, setFileHandler, setFileProperty
-
-
-
-
Constructor Detail
-
Jetty6xStandaloneLocalConfiguration
public Jetty6xStandaloneLocalConfiguration(String dir)
-
-
Method Detail
-
getCapability
public ConfigurationCapability getCapability()
- Returns:
- the
ConfigurationCapabilityof the configuration in term of properties it supports, etc
-
doConfigure
public void doConfigure(LocalContainer container) throws Exception
Implementation ofLocalConfiguration.configure(LocalContainer)that all local configuration using this class must implement. This provides the ability to perform generic actions before and after the container-specific implementation. Another way would be to use AOP...- Overrides:
doConfigurein classAbstractJettyStandaloneLocalConfiguration- Parameters:
container- the container to configure- Throws:
Exception- if any error is raised during the configuration
-
createDeployer
protected AbstractCopyingInstalledLocalDeployer createDeployer(InstalledLocalContainer container)
Creates a new deployer for the specified container.- Specified by:
createDeployerin classAbstractJettyStandaloneLocalConfiguration- Parameters:
container- The container for which to create the deployer, must not benull.- Returns:
- The new deployer, never
null.
-
getWebdefaultFiles
protected String[] getWebdefaultFiles(InstalledLocalContainer container)
Get the Jettywebdefault.xmlfile name(s) for the given local container.- Parameters:
container- Local container.- Returns:
- Jetty
webdefault.xmlfile name.
-
addUseFileMappedBufferXmlReplacement
protected void addUseFileMappedBufferXmlReplacement(String webDefaultXmlFile)
Add theJettyPropertySet.USE_FILE_MAPPED_BUFFERproperty XML replacement for the givenwebdefault.xmlfile name.- Parameters:
webDefaultXmlFile-webdefault.xmlfile to add the XML replacement to.
-
-