Package org.apache.maven.model
Class ConfigurationContainer
- java.lang.Object
-
- org.apache.maven.model.ConfigurationContainer
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
Plugin,PluginExecution
public class ConfigurationContainer extends java.lang.Object implements java.io.SerializableContains 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.ObjectconfigurationThe configuration as DOM object.private booleaninheritanceAppliedprivate java.lang.StringinheritedWhether any configuration should be propagated to child POMs.
-
Constructor Summary
Constructors Constructor Description ConfigurationContainer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetConfiguration()Get the configuration as DOM object.java.lang.StringgetInherited()Get whether any configuration should be propagated to child POMs.booleanisInheritanceApplied()voidsetConfiguration(java.lang.Object configuration)Set the configuration as DOM object.voidsetInherited(java.lang.String inherited)Set whether any configuration should be propagated to child POMs.voidunsetInheritanceApplied()
-
-
-
Method Detail
-
getConfiguration
public java.lang.Object getConfiguration()
Get the configuration as DOM object.- Returns:
- Object
-
getInherited
public java.lang.String getInherited()
Get whether any configuration should be propagated to child POMs.- Returns:
- String
-
setConfiguration
public void setConfiguration(java.lang.Object configuration)
Set the configuration as DOM object.- Parameters:
configuration-
-
setInherited
public void setInherited(java.lang.String inherited)
Set whether any configuration should be propagated to child POMs.- Parameters:
inherited-
-
unsetInheritanceApplied
public void unsetInheritanceApplied()
-
isInheritanceApplied
public boolean isInheritanceApplied()
-
-