view flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultArtifact.java @ 862:c9549074ecd1

Parse Artifact's 'background-processing' attribute and lock the UI if this attribute is true. flys-client/trunk@2669 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 07 Sep 2011 13:57:28 +0000
parents 2c48d75c4ab7
children d5fb88ba99d2
line wrap: on
line source
package de.intevation.flys.client.shared.model;


/**
 * The default implementation of an artifact that might be used in the client.
 *
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class DefaultArtifact implements Artifact {

    /** The artifact's uuid. */
    protected String uuid;

    /** The artifacts hash value. */
    protected String hash;

    /** Determines if the artifact is in background mode.*/
    protected boolean inBackground;

    /** The current artifact description. */
    protected ArtifactDescription artifactDescription;

    /**
     * This constructor should not be used to create new instances of this
     * class. An empty artifact without uuid and hash will be the result of
     * this constructor call.
     */
    public DefaultArtifact() {
    }


    public DefaultArtifact(String uuid, String hash) {
        this(uuid, hash, false);
    }


    /**
     * This constructor creates a new artifact instance with a uuid and a hash.
     *
     * @param uuid The artifact's uuid.
     * @param hash The artifact's hash.
     */
    public DefaultArtifact(String uuid, String hash, boolean inBackground) {
        this.uuid         = uuid;
        this.hash         = hash;
        this.inBackground = inBackground;
    }


    public String getUuid() {
        return uuid;
    }


    public String getHash() {
        return hash;
    }


    public String getName() {
        return "default";
    }


    public boolean isInBackground() {
        return inBackground;
    }


    public ArtifactDescription getArtifactDescription() {
        return artifactDescription;
    }


    public void setArtifactDescription(ArtifactDescription description) {
        this.artifactDescription = description;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org