All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstack4j.model.sahara.JobExecutionAction Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show 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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy