perform-service_broken/src/main/java/org/gcube/application/perform/service/engine/dm/DMInterface.java

14 lines
250 B
Java

package org.gcube.application.perform.service.engine.dm;
public interface DMInterface {
public static DMInterface get() {
return new DMInterfaceImpl();
}
public void submitJob();
public void getJobStatus();
public void getJobOutput();
}