workspace-task-executor-lib.../src/main/java/org/gcube/common/workspacetaskexecutor/TaskConfiguration.java

51 lines
701 B
Java
Raw Normal View History

/**
*
*/
package org.gcube.common.workspacetaskexecutor;
import java.util.Map;
/**
* The Interface DoTaskConfiguration.
*
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* Apr 26, 2018
*/
public interface TaskConfiguration {
/**
* Gets the task id.
*
* @return the task id
*/
String getTaskId();
/**
* Gets the task description.
*
* @return the task description
*/
String getTaskDescription();
/**
* Gets the map parameters.
*
* @return the map parameters
*/
Map<String, String> getMapParameters();
/**
* Gets the workspace item id where execute the Task
*
* @return the workspace item id
*/
String getWorkspaceItemId();
}