Class ConfigProperty
- java.lang.Object
-
- org.sonatype.plexus.components.sec.dispatcher.model.ConfigProperty
-
- All Implemented Interfaces:
java.io.Serializable
public class ConfigProperty extends java.lang.Object implements java.io.Serializable
generic property - name/value pair.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ConfigProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Get name of this property.java.lang.String
getValue()
Get value of this property.void
setName(java.lang.String name)
Set name of this property.void
setValue(java.lang.String value)
Set value of this property.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Get name of this property.- Returns:
- String
-
getValue
public java.lang.String getValue()
Get value of this property.- Returns:
- String
-
setName
public void setName(java.lang.String name)
Set name of this property.- Parameters:
name
-
-
setValue
public void setValue(java.lang.String value)
Set value of this property.- Parameters:
value
-
-
-