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

22 lines
696 B
Java

/**
*
*/
package org.gcube.informationsystem.model.reference.properties;
import org.gcube.informationsystem.base.reference.properties.BaseProperty;
/**
* @author Luca Frosini (ISTI - CNR)
* Root Class for Property types. It creates a base common type, which is useful
* for management purpose.
*/
// @JsonIgnoreProperties(ignoreUnknown=true)
// @JsonDeserialize(as=PropertyImpl.class) Do not uncomment to manage subclasses
public interface Property extends BaseProperty {
public static final String NAME = "Property"; //Property.class.getSimpleName();
public static final String DESCRIPTION = "This is the base class for Property";
public static final String VERSION = "1.0.0";
}