teichmann@5831: package org.dive4elements.river.artifacts.access; felix@4647: felix@4647: import org.apache.log4j.Logger; felix@4647: teichmann@5831: import org.dive4elements.artifacts.CallContext; teichmann@5831: import org.dive4elements.river.artifacts.FLYSArtifact; teichmann@5831: import org.dive4elements.river.utils.FLYSUtils; felix@4647: felix@4647: /** For the moment, light-weight wrapper around FLYSUtils. */ felix@4647: // TODO employ 'Caching' like other Accesses, remove usage of FLYSUtils. felix@4647: public class GaugeAccess felix@4647: extends RangeAccess felix@4647: { felix@4647: private static Logger logger = Logger.getLogger(GaugeAccess.class); felix@4647: felix@4647: public GaugeAccess(FLYSArtifact artifact, CallContext context) { felix@4647: super(artifact, context); felix@4647: } felix@4647: felix@4647: felix@4647: public String getGaugeName() { felix@4647: return FLYSUtils.getGaugename(this.getArtifact()); felix@4647: } felix@4647: felix@4647: // TODO there is also getGauges in FLYSUtils... felix@4647: } felix@4647: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :