public interface StandaloneLocalConfiguration extends LocalConfiguration
ExistingLocalConfiguration. However, doing so means
that you'll need to set up the configuration yourself on your local file system.| Modifier and Type | Method and Description |
|---|---|
void |
addXmlReplacement(String filename,
String xpathExpression,
String configurationPropertyName)
Adds an XML replacement.
|
void |
addXmlReplacement(String filename,
String xpathExpression,
String attributeName,
String configurationPropertyName)
Adds an XML replacement.
|
void |
addXmlReplacement(XmlReplacement xmlReplacement)
Adds an XML replacement.
|
void |
removeXmlReplacement(String filename,
String xpathExpression)
Removes an XML replacement.
|
void |
removeXmlReplacement(String filename,
String xpathExpression,
String attributeName)
Removes an XML replacement.
|
addDataSource, addDeployable, addResource, applyPortOffset, configure, getDataSources, getDeployables, getFileHandler, getFileProperties, getHome, getResources, revertPortOffset, setConfigFileProperty, setFileHandler, setFilePropertygetCapability, getProperties, getPropertyValue, getType, setPropertyvoid addXmlReplacement(XmlReplacement xmlReplacement)
xmlReplacement - XML replacement to add.void addXmlReplacement(String filename, String xpathExpression, String configurationPropertyName)
filename - File in which to replace.xpathExpression - XPath expression to look for.configurationPropertyName - Name of the configuration property to set. The XML
replacement will be ignored if the property is set to null.void addXmlReplacement(String filename, String xpathExpression, String attributeName, String configurationPropertyName)
filename - File in which to replace.xpathExpression - XPath expression to look for.attributeName - Attribute name to modify. If null, the node's contents
will be modified.configurationPropertyName - Name of the configuration property to set. The XML
replacement will be ignored if the property is set to null.void removeXmlReplacement(String filename, String xpathExpression)
filename - File in which to replace.xpathExpression - XPath expression to look for.void removeXmlReplacement(String filename, String xpathExpression, String attributeName)
filename - File in which to replace.xpathExpression - XPath expression to look for.attributeName - Attribute name to modify. If null, the node's contents
will be modified.Copyright © 2004-2013 Codehaus. All Rights Reserved.