Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WstValueTableCacheKey.java @ 1729:2e5ebdeb8af9
Give StaticWKmsArtifacts proper names, and pre-deselect them.
flys-artifacts/trunk@3013 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Tue, 18 Oct 2011 15:00:43 +0000 |
parents | 07640ab913fd |
children | 305a338c43c2 |
line wrap: on
line source
package de.intevation.flys.artifacts.model; import java.io.Serializable; public final class WstValueTableCacheKey implements Serializable { public static final String CACHE_NAME = "wst-value-table"; private int riverId; private int kind; public WstValueTableCacheKey(int riverId, int kind) { this.riverId = riverId; this.kind = kind; } public int hashCode() { return (riverId << 8) | kind; } public boolean equals(Object other) { if (!(other instanceof WstValueTableCacheKey)) { return false; } WstValueTableCacheKey o = (WstValueTableCacheKey)other; return riverId == o.riverId && kind == o.kind; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :