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

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

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.sahara;

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

import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.sahara.builder.JobBuilder;

/**
 * An Openstack Sahara Job
 * 
 * @author [email protected]
 * @author [email protected]
 */
public interface Job extends ModelEntity, Buildable   {

    /**
     * @return the description of the job
     */
    String getDescription();

    /**
     * @return the tenant id of the job
     */
    String getTenantId();

    /**
     * @return the created date of the job
     */
    Date getCreatedAt();

    /**
     * @return the updated date of the job
     */
    Date getUpdatedAt();

    /**
     * @return the identifier of the job
     */
    String getId();

    /**
     * @return the name of the job
     */
    String getName();

    /**
     * @return the type of the job
     */
    String getType();
    
    /**
     * @return mains
     */
    List getFullMains();

    /**
     * @return libs
     */
    List getFullLibs();

    /**
     * @return main ids
     */
    List getMains();

    /**
     * @return lib ids
     */
    List getLibs();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy