package org.gcube.informationsystem.base.reference.properties; import org.gcube.informationsystem.base.impl.properties.PropertyElementImpl; import org.gcube.informationsystem.base.reference.Element; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; /** * @author Luca Frosini (ISTI - CNR) * Root Class for Property types. It creates a base common type, which is useful * for management purpose. */ @JsonDeserialize(as=PropertyElementImpl.class) public interface PropertyElement extends Element { public static final String NAME = "PropertyElement"; //PropertyElement.class.getSimpleName(); public static final String DESCRIPTION = "This is the very base class for Property"; public static final String VERSION = "1.0.0"; }