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

50 lines
713 B
Java

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