view artifact-database/src/main/java/de/intevation/artifactdatabase/state/DefaultOutput.java @ 251:9e12f3fbcf78

Added a method to add new facets to an output. artifacts/trunk@1742 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 21 Apr 2011 13:43:24 +0000
parents fbd57d2eeaef
children 995fa6994480
line wrap: on
line source
package de.intevation.artifactdatabase.state;

import java.util.ArrayList;
import java.util.List;

/**
 * The default implementation of an Output.
 *
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class DefaultOutput implements Output {

    protected String name;

    protected String description;

    protected String mimeType;

    protected List<Facet> facets;


    /**
     * The default constructor that instantiates a new DefaultOutput object.
     *
     * @param name The name of this output.
     * @param description The description of this output.
     * @param mimeType The mimetype of this output.
     */
    public DefaultOutput(String name, String description, String mimeType) {
        this.name        = name;
        this.description = description;
        this.mimeType    = mimeType;
        this.facets      = new ArrayList<Facet>();
    }


    /**
     * This constructor builds a new Output object that contains facets as well.
     *
     * @param name The name of this output.
     * @param description The description of this output.
     * @param mimeType The mimetype of this output.
     * @param facets The list of facets supported by this output.
     */
    public DefaultOutput(
        String      name,
        String      description,
        String      mimeType,
        List<Facet> facets)
    {
        this(name, description, mimeType);

        this.facets = facets;
    }


    /**
     * Returns the name of this output.
     *
     * @return the name of this output.
     */
    public String getName() {
        return name;
    }


    /**
     * Returns the description of this output.
     *
     * @return the description of this output.
     */
    public String getDescription() {
        return description;
    }


    /**
     * Returns the mimetype of this output.
     *
     * @return the mimetype of this output.
     */
    public String getMimeType() {
        return mimeType;
    }


    /**
     * Returns the list of facets supported by this output.
     *
     * @return the list of facets supported by this output.
     */
    public List<Facet> getFacets() {
        return facets;
    }


    public void addFacet(Facet facet) {
        facets.add(facet);
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :

http://dive4elements.wald.intevation.org