package org.gcube.resourcemanagement.model.reference.properties; import org.gcube.informationsystem.model.reference.properties.Property; import org.gcube.resourcemanagement.model.impl.properties.GCubePropertyImpl; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; /** * Marker interface for {@link Property} properties extended in the gCube model. * * @author Manuele Simi (ISTI - CNR) * @author Luca Frosini (ISTI - CNR) * */ @JsonDeserialize(as=GCubePropertyImpl.class) public interface GCubeProperty extends Property { public static final String NAME = "GCubeProperty"; //GCubeProperty.class.getSimpleName(); }