information-system-model/src/main/java/org/gcube/informationsystem/queries/templates/reference/properties/TemplateProperty.java

21 lines
1011 B
Java
Raw Normal View History

2021-10-25 10:58:30 +02:00
package org.gcube.informationsystem.queries.templates.reference.properties;
2021-10-20 18:39:53 +02:00
import org.gcube.com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.gcube.informationsystem.base.reference.properties.PropertyElement;
2021-10-25 10:58:30 +02:00
import org.gcube.informationsystem.queries.templates.impl.properties.TemplatePropertyImpl;
2021-10-20 18:39:53 +02:00
import org.gcube.informationsystem.types.reference.Change;
import org.gcube.informationsystem.types.reference.TypeMetadata;
2021-10-21 10:11:45 +02:00
import org.gcube.informationsystem.utils.Version;
2021-10-20 18:39:53 +02:00
/**
* @author Luca Frosini (ISTI - CNR)
*/
@JsonDeserialize(as=TemplatePropertyImpl.class)
2021-10-21 10:11:45 +02:00
@TypeMetadata(name = TemplateProperty.NAME, description = "This is the class used to define the TemplateProperty", version = Version.MINIMAL_VERSION_STRING)
@Change(version = Version.MINIMAL_VERSION_STRING, description = Version.MINIMAL_VERSION_DESCRIPTION)
2021-10-20 18:39:53 +02:00
public interface TemplateProperty extends PropertyElement {
public static final String NAME = "TemplateProperty"; // TemplateProperty.class.getSimpleName();
}