tim@32: /** tim@32: * tim@32: */ tim@32: package de.intevation.gnv.artifactdatabase.objects; tim@36: tim@32: /** tim@32: * @author Tim Englich tim@36: * tim@32: */ tim@36: public class DefaultArtifactStatisticValue implements ArtifactStatisticValue { tim@32: 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: }