Annotated ISProperty annotation so that is included in the Javadoc

This commit is contained in:
Luca Frosini 2020-12-18 12:23:21 +01:00
parent 82e7a03b3c
commit a5fac85d9a
1 changed files with 2 additions and 0 deletions

View File

@ -1,5 +1,6 @@
package org.gcube.informationsystem.types.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@ -16,6 +17,7 @@ import org.gcube.informationsystem.types.reference.properties.PropertyDefinition
* The name of the property is obtained by removing "get" or "is" from method
* name and lower casing the first letter.
*/
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ISProperty {