data-miner-executor/src/main/java/org/gcube/portlets/user/dataminerexecutor/shared/process/InvocationAction.java

37 lines
469 B
Java

package org.gcube.portlets.user.dataminerexecutor.shared.process;
/**
*
* @author Giancarlo Panichi
*
*
*/
public enum InvocationAction {
SHOW("show"),
EDIT("edit"),
RUN("run");
private String action;
/**
* Instantiates a new action type.
*
* @param action the action
*/
InvocationAction(String action){
this.action = action;
}
/**
* Gets the action.
*
* @return the action
*/
public String getAction() {
return action;
}
}