tim@32: package de.intevation.gnv.artifactdatabase.objects; tim@36: tim@32: /** tim@32: * @author Tim Englich sascha@681: * tim@32: */ tim@36: public class DefaultArtifactStatisticValue implements ArtifactStatisticValue { tim@32: tim@165: /** tim@165: * The UID of this Class. tim@165: */ tim@165: private static final long serialVersionUID = -8409111023127835398L; tim@165: tim@32: private String key = null; tim@36: tim@32: private String value = null; tim@32: tim@32: public DefaultArtifactStatisticValue(String key, String value) { tim@32: super(); tim@32: this.key = key; tim@32: this.value = value; tim@32: } tim@32: tim@32: public String getKey() { tim@32: return this.key; tim@32: } tim@32: tim@32: public String getValue() { tim@32: return this.value; tim@32: } tim@32: tim@32: }