Class ConfigurationContainer
- java.lang.Object
-
- org.apache.maven.model.ConfigurationContainer
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,InputLocationTracker
- Direct Known Subclasses:
Plugin
,PluginExecution
,ReportPlugin
,ReportSet
public class ConfigurationContainer extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable, InputLocationTracker
Contains the configuration information of the container like Plugin.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Object
configuration
The configuration as DOM object.private InputLocation
configurationLocation
Field configurationLocation.private boolean
inheritanceApplied
private java.lang.String
inherited
Whether any configuration should be propagated to child POMs.private InputLocation
inheritedLocation
Field inheritedLocation.private InputLocation
location
Field location.private java.util.Map<java.lang.Object,InputLocation>
locations
Field locations.
-
Constructor Summary
Constructors Constructor Description ConfigurationContainer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigurationContainer
clone()
Method clone.java.lang.Object
getConfiguration()
Getjava.lang.String
getInherited()
Get whether any configuration should be propagated to child POMs.InputLocation
getLocation(java.lang.Object key)
Gets the location of the specified field in the input source.private InputLocation
getOtherLocation(java.lang.Object key)
boolean
isInheritanceApplied()
boolean
isInherited()
void
setConfiguration(java.lang.Object configuration)
Setvoid
setInherited(boolean inherited)
void
setInherited(java.lang.String inherited)
Set whether any configuration should be propagated to child POMs.void
setLocation(java.lang.Object key, InputLocation location)
Sets the location of the specified field.void
setOtherLocation(java.lang.Object key, InputLocation location)
void
unsetInheritanceApplied()
-
-
-
Field Detail
-
inherited
private java.lang.String inherited
Whether any configuration should be propagated to child POMs. Note: While the type of this field isString
for technical reasons, the semantic type is actuallyBoolean
. Default value istrue
.
-
configuration
private java.lang.Object configuration
The configuration as DOM object.
By default, every element content is trimmed, but starting with Maven 3.1.0, you can add
xml:space="preserve"
to elements you want to preserve whitespace.You can control how child POMs inherit configuration from parent POMs by adding
combine.children
orcombine.self
attributes to the children of the configuration element:combine.children
: available values aremerge
(default) andappend
,combine.self
: available values aremerge
(default) andoverride
.
See POM Reference documentation and Xpp3DomUtils for more information.
-
locations
private java.util.Map<java.lang.Object,InputLocation> locations
Field locations.
-
location
private InputLocation location
Field location.
-
inheritedLocation
private InputLocation inheritedLocation
Field inheritedLocation.
-
configurationLocation
private InputLocation configurationLocation
Field configurationLocation.
-
inheritanceApplied
private boolean inheritanceApplied
-
-
Method Detail
-
clone
public ConfigurationContainer clone()
Method clone.- Overrides:
clone
in classjava.lang.Object
- Returns:
- ConfigurationContainer
-
getConfiguration
public java.lang.Object getConfiguration()
GetThe configuration as DOM object.
By default, every element content is trimmed, but starting with Maven 3.1.0, you can add
xml:space="preserve"
to elements you want to preserve whitespace.You can control how child POMs inherit configuration from parent POMs by adding
combine.children
orcombine.self
attributes to the children of the configuration element:combine.children
: available values aremerge
(default) andappend
,combine.self
: available values aremerge
(default) andoverride
.
See POM Reference documentation and Xpp3DomUtils for more information.
- Returns:
- Object
-
getInherited
public java.lang.String getInherited()
Get whether any configuration should be propagated to child POMs. Note: While the type of this field isString
for technical reasons, the semantic type is actuallyBoolean
. Default value istrue
.- Returns:
- String
-
getLocation
public InputLocation getLocation(java.lang.Object key)
Description copied from interface:InputLocationTracker
Gets the location of the specified field in the input source.- Specified by:
getLocation
in interfaceInputLocationTracker
- Parameters:
key
- a key object.- Returns:
- InputLocation
-
setLocation
public void setLocation(java.lang.Object key, InputLocation location)
Description copied from interface:InputLocationTracker
Sets the location of the specified field.- Specified by:
setLocation
in interfaceInputLocationTracker
- Parameters:
key
- a key object.location
- a location object.
-
setOtherLocation
public void setOtherLocation(java.lang.Object key, InputLocation location)
- Parameters:
key
- a key object.location
- a location object.
-
getOtherLocation
private InputLocation getOtherLocation(java.lang.Object key)
- Parameters:
key
- a key object.- Returns:
- InputLocation
-
setConfiguration
public void setConfiguration(java.lang.Object configuration)
SetThe configuration as DOM object.
By default, every element content is trimmed, but starting with Maven 3.1.0, you can add
xml:space="preserve"
to elements you want to preserve whitespace.You can control how child POMs inherit configuration from parent POMs by adding
combine.children
orcombine.self
attributes to the children of the configuration element:combine.children
: available values aremerge
(default) andappend
,combine.self
: available values aremerge
(default) andoverride
.
See POM Reference documentation and Xpp3DomUtils for more information.
- Parameters:
configuration
- a configuration object.
-
setInherited
public void setInherited(java.lang.String inherited)
Set whether any configuration should be propagated to child POMs. Note: While the type of this field isString
for technical reasons, the semantic type is actuallyBoolean
. Default value istrue
.- Parameters:
inherited
- a inherited object.
-
isInherited
public boolean isInherited()
-
setInherited
public void setInherited(boolean inherited)
-
unsetInheritanceApplied
public void unsetInheritanceApplied()
-
isInheritanceApplied
public boolean isInheritanceApplied()
-
-