view flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultTheme.java @ 3497:88feb3347aa5

Implement a ProxyServlet Implement a ProxyServlet to be able to restrict the access to the mapserver too. All queries to the provided map services should go throught this new ProxyServlet. Currently the ProxyServlet can only handle HTTP GET requests. flys-client/trunk@5221 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Ricks <bjoern.ricks@intevation.de>
date Thu, 16 Aug 2012 14:42:36 +0000
parents 98c7a46ec5ae
children
line wrap: on
line source
package de.intevation.flys.client.shared.model;

/**
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class DefaultTheme implements Theme {

    protected int position;

    protected int index;

    protected int active;

    protected int visible;

    protected String artifact;

    protected String facet;

    protected String description;

    /** CollectionItem associated with this facet/themes artifact. */
    protected CollectionItem collectionItem;


    public DefaultTheme() {
    }


    public DefaultTheme(
        int     pos,
        int     index,
        int     active,
        int     visible,
        String  art,
        String  facet,
        String  description)
    {
        this.position       = pos;
        this.index          = index;
        this.active         = active;
        this.visible        = visible;
        this.artifact       = art;
        this.facet          = facet;
        this.description    = description;
        this.collectionItem = null;
    }


    public int getPosition() {
        return position;
    }


    public void setPosition(int pos) {
        this.position = pos;
    }


    public int getIndex() {
        return index;
    }


    public int getActive() {
        return active;
    }


    public void setActive(int active) {
        this.active = active;
    }


    public String getArtifact() {
        return artifact;
    }


    public String getFacet() {
        return facet;
    }


    public String getDescription() {
        return description;
    }


    public void setDescription(String description) {
        this.description = description;
    }


    public int getVisible() {
        return visible;
    }


    public void setVisible(int visible) {
        this.visible = visible;
    }


    public boolean equals(Object o) {
        if (!(o instanceof DefaultTheme)) {
            return false;
        }

        DefaultTheme other = (DefaultTheme) o;

        if (other.position != position) {
            return false;
        }

        if (!other.artifact.equals(artifact)) {
            return false;
        }

        if (other.active != active) {
            return false;
        }

        if (!other.facet.equals(facet)) {
            return false;
        }

        if (!other.description.equals(description)) {
            return false;
        }

        if (other.index != index) {
            return false;
        }

        if (other.visible != visible) {
            return false;
        }

        return true;
    }

    /** Get the CollectionItem representing the facets artifact. */
    @Override
    public CollectionItem getCollectionItem() {
        return collectionItem;
    }

    /** Set the CollectionItem representing the facets artifact. */
    @Override
    public void setCollectionItem(CollectionItem ci) {
        this.collectionItem = ci;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org