Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WstValueTableCacheKey.java @ 1889:ad22fc70bdab
Added translations for Mosel, Elbe and Saar.
flys-artifacts/trunk@3249 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Tue, 15 Nov 2011 14:10:21 +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 :