protected final void readRequest(final InputStream input) throws IOException {
final Unmarshaller unmarshaller = getUnmarshaller();
unmarshaller.start(createByteInput(input));
expectHeader(unmarshaller, ServerManagerProtocol.PARAM_SERVER_NAME);
serverName = unmarshaller.readUTF();
unmarshaller.finish();
}
@Override
protected void sendResponse(final OutputStream output) throws IOException {
ServerModel serverModel = serverManager.getServerModel(serverName);