org.rundeck.api.DefaultRunAdhocCommand 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;
/**
* Implementation of {@link RunAdhocCommand}
*/
class DefaultRunAdhocCommand extends DefaultRunAdhoc implements RunAdhocCommand {
private String command;
@Override
public String getCommand() {
return command;
}
public void setCommand(String command) {
this.command = command;
}
}