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

48 lines
654 B
Java
Raw Normal View History

/**
*
*/
package org.gcube.common.workspacetaskexecutor.shared;
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 item id.
*
* @return the item id
*/
String getItemId();
/**
* Gets the task description.
*
* @return the task description
*/
String getTaskDescription();
/**
* Gets the map parameters.
*
* @return the map parameters
*/
Map<String, String> getMapParameters();
}