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

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

package org.openstack4j.model.sahara;

import java.util.Date;
import java.util.List;

import org.openstack4j.model.ModelEntity;

/**
 * An Info of Sahara Job Execution
 * 
 * @author [email protected]
 * @author [email protected]
 */
public interface JobExecutionInfo extends ModelEntity {

    String getStatus();

    String getExternalId();

    int getRun();

    Date getStartTime();

    Date getEndTime();

    String getAppName();

    Date getLastModTime();

    List getActions();

    String getAcl();

    String getConsoleUrl();

    String getAppPath();

    String getToString();

    String getUser();

    String getConf();

    String getParentId();

    Date getCreatedTime();

    String getGroup();

    String getId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy