vre-modeler/src/org/gcube/vremanagement/vremodeler/resources/handlers/ResourceHandler.java

11 lines
255 B
Java
Raw Normal View History

package org.gcube.vremanagement.vremodeler.resources.handlers;
public interface ResourceHandler<T> {
public void initialize() throws Exception;
public void add(T resource) throws Exception;
public void drop(String resourceId) throws Exception;
}