/** * */ package org.gcube.informationsystem.utils.discovery; import org.gcube.informationsystem.base.reference.entities.EntityElement; import org.gcube.informationsystem.base.reference.properties.PropertyElement; import org.gcube.informationsystem.base.reference.relations.RelationElement; /** * @author Luca Frosini (ISTI - CNR) * */ public interface SchemaAction { public

void managePropertyClass(Class

e) throws Exception; public void manageEntityClass(Class e) throws Exception; public > void manageRelationClass(Class r) throws Exception; }