package org.gcube.data_catalogue.grsf_publish_ws.AAA_PORTED; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Custom field annotation * @author Costantino Perciante at ISTI-CNR (costantino.perciante@isti.cnr.it) */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface CustomField { public String key() default ""; // this will be the key of this custom field on ckan }