(String) ((AmqpValue)bodySection).getValue(), footer, _session);
}
else if(bodySection instanceof AmqpValue && ((AmqpValue)bodySection).getValue() instanceof Binary)
{
Binary value = (Binary) ((AmqpValue) bodySection).getValue();
message = new BytesMessageImpl(header, messageAnnotations, properties, appProperties,
new Data(value), footer, _session);
}
else if(bodySection instanceof Data)
{