1 package org.rundeck.api; 2 3 /** 4 * A command to execute 5 */ 6 public interface RunAdhocCommand extends RunAdhoc { 7 8 /** 9 * Command to executed 10 * @return 11 */ 12 String getCommand(); 13 14 }