All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.plexus.naming.Environment Maven / Gradle / Ivy

The newest version!
package org.codehaus.plexus.naming;

/**
 * @since 10 janv. 07
 * @version $Id$
 * @author Olivier Lamy
 */
public class Environment
{
    private String name;

    private String type;

    private String value;

    public String getName()
    {
        return name;
    }

    public void setName( String name )
    {
        this.name = name;
    }

    public String getType()
    {
        return type;
    }

    public void setType( String type )
    {
        this.type = type;
    }

    public String getValue()
    {
        return value;
    }

    public void setValue( String value )
    {
        this.value = value;
    }

    public String toString()
    {
        StringBuffer humanReadable = new StringBuffer( "name " );
        return humanReadable.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy