30313233343536
} private final ShellOperationParser shellOperationParser; public CommandFactory() { shellOperationParser = new ShellOperationParser(); }
14151617181920
public abstract class ShellCommand implements TelnetCommand { private final ShellOperationParser shellOperationParser; public ShellCommand() { shellOperationParser = new ShellOperationParser(); }
this(commandRequest.getRequestAsString()); } public ShellOperationRequest(String request) { this.request = request; shellOperationParser = new ShellOperationParser(); }