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

org.openstack4j.model.sahara.builder.JobBinaryBuilder Maven / Gradle / Ivy

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

import org.openstack4j.common.Buildable.Builder;
import org.openstack4j.model.sahara.JobBinary;

/**
 * Builder interface used for {@link JobBinary} object.
 * 
 * @author [email protected]
 * @author [email protected]
 */
public interface JobBinaryBuilder extends Builder {

    /**
     * See {@link JobBinary#getDescription()}
     * 
     * @param description the description of the job binary
     * @return JobBinaryBuilder
     */
    JobBinaryBuilder description(String description);

    /**
     * See {@link JobBinary#getURL()}
     * 
     * @param url the URL of the job binary
     * @return JobBinaryBuilder
     */
    JobBinaryBuilder url(String url);

    /**
     * See {@link JobBinary#getName()}
     * 
     * @param name the name of the job binary
     * @return JobBinaryBuilder
     */
    JobBinaryBuilder name(String name);

    /**
     * See {@link JobBinary#getCredentials()}
     * 
     * @param user username of the credentials
     * @param password password of the credentials
     * @return JobBinaryBuilder
     */
    JobBinaryBuilder credentials(String user, String password);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy