/** * */ package org.gcube.resourcemanagement.model.reference.relations.consistsof; import org.gcube.informationsystem.model.reference.entities.Resource; import org.gcube.resourcemanagement.model.impl.relations.consistsof.HasPersistentMemoryImpl; import org.gcube.resourcemanagement.model.reference.entities.facets.MemoryFacet; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; /** * @author Luca Frosini (ISTI - CNR) * https://wiki.gcube-system.org/gcube/Facet_Based_Resource_Model#hasPersistentMemory */ @JsonDeserialize(as=HasPersistentMemoryImpl.class) public interface HasPersistentMemory extends HasMemory { public static final String NAME = "HasPersistentMemory"; // HasPersistentMemory.class.getSimpleName(); }