view flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultTheme.java @ 5200:42bb6ff78d1b 2.9.11

Directly set the connectionInitSqls on the datasource Somehow the factory fails to set the connectionInitSqls if we add it to the dbcpProperties. So we now set it directly
author Andre Heinecke <aheinecke@intevation.de>
date Fri, 08 Mar 2013 11:48:33 +0100
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