view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/sq/StaticSQCacheKey.java @ 5797:cce12c06466f

RelativePointFacet: Through minor refactoring prepared to used StaticWQKmsArtifact.
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Wed, 24 Apr 2013 08:17:18 +0200
parents 700ac898ab0b
children
line wrap: on
line source
package de.intevation.flys.artifacts.model.sq;

import java.io.Serializable;


public class StaticSQCacheKey
implements Serializable
{
    public static final String CACHE_NAME = "static-sq-relation";

    private String river;
    private int measurementId;

    public StaticSQCacheKey(String river, int measurementId) {
        this.river = river;
        this.measurementId = measurementId;
    }

    public int hashCode() {
        return this.river.hashCode() | measurementId;
    }

    public boolean equals(Object other) {
        if (!(other instanceof StaticSQCacheKey)) {
            return false;
        }
        StaticSQCacheKey o = (StaticSQCacheKey) other;
        return this.river == o.river && this.measurementId == o.measurementId;
    }
}

http://dive4elements.wald.intevation.org