class Request {
private Char theChar = null;
private String theCommandLine = null;
Request(Char ch, String aCommand) {
theChar = ch;
theCommandLine = aCommand;
}
Char getChar() {
return theChar;
}
String getCommandLine() {
return theCommandLine;
}
}