view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/StaticMorphoWidthCacheKey.java @ 5764:7ac111db8a07

Model, factory, facet and static artifact for morphologic width.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 18 Apr 2013 14:14:15 +0200
parents
children
line wrap: on
line source
package de.intevation.flys.artifacts.model;


public class StaticMorphoWidthCacheKey
{
   public static final String CACHE_NAME = "morpho-width-table-static";

    private int width_id;

    public StaticMorphoWidthCacheKey(
        int width_id
    ) {
        this.width_id = width_id;
    }

    @Override
    public int hashCode() {
        return (String.valueOf(width_id)).hashCode();
    }

    @Override
    public boolean equals(Object other) {
        if (!(other instanceof StaticMorphoWidthCacheKey)) {
            return false;
        }
        StaticMorphoWidthCacheKey o = (StaticMorphoWidthCacheKey) other;
        return this.width_id == o.width_id;
    }
}

http://dive4elements.wald.intevation.org