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

25 lines
828 B
Java
Raw Normal View History

/**
*
*/
package org.gcube.informationsystem.model.reference.properties;
import java.io.Serializable;
import org.gcube.informationsystem.model.reference.ISManageable;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* @author Luca Frosini (ISTI - CNR)
* Root Class for Property types. It creates a base common type, which is useful
* for management purpose.
*/
// @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = ISManageable.CLASS_PROPERTY)
@JsonIgnoreProperties(ignoreUnknown=true)
public interface Property extends ISManageable, Serializable {
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";
}