1 package org.argeo.slc.execution;
2
3 /**
4 * Interpret a command line and run it in the underlying agent, with the proper
5 * authentication.
6 */
7 public interface SlcAgentCli {
8 /**
9 * Synchronously executes.
10 *
11 * @return the UUID of the process
12 */
13 public String process(String[] args);
14 }