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

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

package org.openstack4j.model.sahara;

import java.util.List;
import org.openstack4j.model.ModelEntity;

/**
 * Hints for job configuration that can be applied to job exeuctions.
 *
 * @author [email protected]
 * @author [email protected]
 */
public interface JobConfigHint extends ModelEntity {

    /**
     * @return the list of configuration maps
     */
    List getConfigs();

    /**
     * @return the list of arguments
     */
    List getArgs();
}