resource-registry/src/main/java/org/gcube/informationsystem/resourceregistry/ermanagement/relation/ConsistsOfManagement.java

25 lines
529 B
Java
Raw Normal View History

/**
*
*/
package org.gcube.informationsystem.resourceregistry.ermanagement.relation;
import org.gcube.informationsystem.model.relation.ConsistsOf;
import com.tinkerpop.blueprints.impls.orient.OrientGraph;
/**
* @author Luca Frosini (ISTI - CNR)
*/
@SuppressWarnings("rawtypes")
public class ConsistsOfManagement extends RelationManagement<ConsistsOf> {
public ConsistsOfManagement() {
super(ConsistsOf.class);
}
public ConsistsOfManagement(OrientGraph orientGraph) {
super(ConsistsOf.class, orientGraph);
}
}