org.rundeck.api.RundeckJobsImport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rundeck-api-java-client Show documentation
Show all versions of rundeck-api-java-client Show documentation
Java client for the Rundeck REST API
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();
}