org.openstack4j.model.sahara.JobExecutionAction Maven / Gradle / Ivy
The newest version!
package org.openstack4j.model.sahara;
import java.util.Date;
import org.openstack4j.model.ModelEntity;
/**
* An Action of Sahara Job Execution
*
* @author [email protected]
* @author [email protected]
*/
public interface JobExecutionAction extends ModelEntity {
String getStatus();
int getRetries();
String getTransition();
String getStats();
Date getStartTime();
Date getEndTime();
String getCred();
String getErrorMessage();
String getExternalId();
String getErrorCode();
String getConsoleUrl();
String getToString();
String getExternalStatus();
String getConf();
String getType();
String getTrackerUri();
String getExternalChildIds();
String getData();
String getId();
String getName();
}