package no.met.metadataeditor.service; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation used to add short descriptions to methods that are exposed as web * services. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface ServiceDescription { String value(); }