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

org.apache.chemistry.opencmis.commons.spi.ExtendedHolder Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package org.apache.chemistry.opencmis.commons.spi;

import java.util.HashMap;
import java.util.Map;

/**
 * Holder for IN/OUT parameters that can hold extra values.
 */
public class ExtendedHolder extends Holder {

    private Map extraValues = new HashMap();

    /**
     * Constructs a holder with a {@code null} value.
     */
    public ExtendedHolder() {
        super();
    }

    /**
     * Constructs a holder with the given value.
     */
    public ExtendedHolder(T value) {
        super(value);
    }

    /**
     * Sets an extra value.
     * 
     * @param name
     *            the name of the value
     * @param value
     *            the value
     */
    public void setExtraValue(String name, Object value) {
        extraValues.put(name, value);
    }

    /**
     * Gets an extra value,
     * 
     * @param name
     *            the name of the value
     * @return the value or {@code null} if a value with the given name doesn't
     *         exist
     */
    public Object getExtraValue(String name) {
        return extraValues.get(name);
    }

    @Override
    public String toString() {
        return "ExtendedHolder(" + getValue() + ", " + extraValues.toString() + ")";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy