String correlationId = source.getCorrelationId();
if (correlationId != null) {
try {
target.setCorrelationId(source.getCorrelationId().getBytes(charset));
} catch (UnsupportedEncodingException ex) {
throw new AmqpUnsupportedEncodingException(ex);
}
}
String replyTo = source.getReplyTo();
if (replyTo != null) {
target.setReplyTo(replyTo);