if (exchangePattern == ExchangePattern.InOnly) {
paramExchange.setOut(paramExchange.getIn());
} else if (exchangePattern == ExchangePattern.InOut) {
co.read(); // повторно считываем сохраненный объект из базы
//LOG.info("After read "+co.toString());
MarshalHelper marshalHelper = new MarshalHelper(appInstance);
String payload2 = marshalHelper.object2xml(co, "UTF-8");
Message messageOut = paramExchange.getOut();
messageOut.setBody(payload2);
}
}