1 package org.rundeck.api; 2 3 /** 4 * Implementation of {@link RunAdhocCommand} 5 */ 6 class DefaultRunAdhocCommand extends DefaultRunAdhoc implements RunAdhocCommand { 7 private String command; 8 9 @Override 10 public String getCommand() { 11 return command; 12 } 13 14 public void setCommand(String command) { 15 this.command = command; 16 } 17 18 }