
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
package org.rundeck.api;
import org.rundeck.api.domain.RundeckJobsImportMethod;
import org.rundeck.api.domain.RundeckJobsUUIDImportBehavior;
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 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 - 2025 Weber Informatics LLC | Privacy Policy