001package org.gbif.dwc.terms;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006import java.lang.annotation.Target;
007
008/**
009 * Marker annotation to declare a controlled vocabulary exists in the GBIF vocabulary server.
010 */
011@Target(ElementType.FIELD)
012@Retention(RetentionPolicy.RUNTIME)
013public @interface Vocabulary {}