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

org.rundeck.api.RundeckJobsImport Maven / Gradle / Ivy

The newest version!
package org.rundeck.api;

import org.rundeck.api.domain.RundeckJobsImportMethod;
import org.rundeck.api.domain.RundeckJobsUUIDImportBehavior;

import java.io.File;
import java.io.InputStream;

/**
 * Request to import a set of Job definitions
 */
public interface RundeckJobsImport {
    /**
     * Return the input stream
     * @return
     */
    public InputStream getStream();

    /**
     * @return the file
     */
    public File getFile();

    /**
     * Return the file type
     * @return
     */
    public FileType getFileType();

    /**
     * Return the import behavior
     * @return
     */
    public RundeckJobsImportMethod getImportMethod();
    /**
     * Return the import behavior
     * @return
     */
    public RundeckJobsUUIDImportBehavior getUuidImportBehavior();

    /**
     * Return the project name
     * @return
     */
    public String getProject();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy