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

org.codehaus.xfire.aegis.Holder Maven / Gradle / Ivy

package org.codehaus.xfire.aegis;

public class Holder
{
    private Object value;

    public Object getValue()
    {
        return value;
    }

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

    public String toString()
    {
        return super.toString() + "[" + value + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy