Package org.apache.maven.model
Class ConfigurationContainer
- java.lang.Object
-
- org.apache.maven.model.ConfigurationContainer
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
Plugin,PluginExecution
public class ConfigurationContainer extends Object implements Serializable
Contains the configuration information of the container like Plugin.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigurationContainer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetConfiguration()Get the configuration as DOM object.StringgetInherited()Get whether any configuration should be propagated to child POMs.booleanisInheritanceApplied()voidsetConfiguration(Object configuration)Set the configuration as DOM object.voidsetInherited(String inherited)Set whether any configuration should be propagated to child POMs.voidunsetInheritanceApplied()
-
-
-
Method Detail
-
getConfiguration
public Object getConfiguration()
Get the configuration as DOM object.- Returns:
- Object
-
getInherited
public String getInherited()
Get whether any configuration should be propagated to child POMs.- Returns:
- String
-
setConfiguration
public void setConfiguration(Object configuration)
Set the configuration as DOM object.- Parameters:
configuration-
-
setInherited
public void setInherited(String inherited)
Set whether any configuration should be propagated to child POMs.- Parameters:
inherited-
-
unsetInheritanceApplied
public void unsetInheritanceApplied()
-
isInheritanceApplied
public boolean isInheritanceApplied()
-
-