org.codehaus.plexus.components.secdispatcher.model.ConfigProperty Maven / Gradle / Ivy
The newest version!
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 2.4.0,
// any modifications will be overwritten.
// ==============================================================
package org.codehaus.plexus.components.secdispatcher.model;
/**
* generic property - name/value pair.
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class ConfigProperty
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* name of this property.
*/
private String name;
/**
* value of this property.
*/
private String value;
//-----------/
//- Methods -/
//-----------/
/**
* Get name of this property.
*
* @return String
*/
public String getName()
{
return this.name;
} //-- String getName()
/**
* Get value of this property.
*
* @return String
*/
public String getValue()
{
return this.value;
} //-- String getValue()
/**
* Set name of this property.
*
* @param name a name object.
*/
public void setName( String name )
{
this.name = name;
} //-- void setName( String )
/**
* Set value of this property.
*
* @param value a value object.
*/
public void setValue( String value )
{
this.value = value;
} //-- void setValue( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy