information-system-model/src/main/java/org/gcube/informationsystem/model/reference/properties/Property.java

24 lines
810 B
Java
Raw Normal View History

/**
*
*/
2019-10-24 11:26:49 +02:00
package org.gcube.informationsystem.model.reference.properties;
2020-07-07 17:04:25 +02:00
import org.gcube.com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.gcube.informationsystem.base.reference.properties.PropertyElement;
import org.gcube.informationsystem.model.impl.properties.PropertyImpl;
/**
* @author Luca Frosini (ISTI - CNR)
* Root Class for Property types. It creates a base common type, which is useful
* for management purpose.
*/
2019-10-24 19:50:43 +02:00
// @JsonIgnoreProperties(ignoreUnknown=true)
@JsonDeserialize(as=PropertyImpl.class)
public interface Property extends PropertyElement {
public static final String NAME = "Property"; //Property.class.getSimpleName();
2020-02-03 11:24:55 +01:00
public static final String DESCRIPTION = "This is the base class for Properties";
public static final String VERSION = "1.0.0";
}