Removed ununsed class

This commit is contained in:
Luca Frosini 2021-03-08 09:39:25 +01:00
parent 5801089325
commit 5fc6288a65
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
package org.gcube.informationsystem.resourceregistry.instances;
import org.gcube.informationsystem.base.reference.IdentifiableElement;
import org.gcube.informationsystem.resourceregistry.api.exceptions.ResourceRegistryException;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public abstract class AbstractERManagementTest<Er extends IdentifiableElement> {
public abstract Er create(Er er) throws ResourceRegistryException;
public abstract Er update(Er er) throws ResourceRegistryException;
public abstract Er read(Er er) throws ResourceRegistryException;
public abstract boolean delete(Er er) throws ResourceRegistryException;
}