1 /***
2 *
3 */
4 package de.cohesion.bssh;
5
6 /***
7 * @author schulzs
8 */
9 public interface Result {
10
11 Command getCommand();
12
13 Member getMember();
14
15 Exception getException();
16
17 String getOutput();
18
19 String getError();
20
21 }