.sourceCodeLocation(OperationCollectionUtil.getSourceCodeLocation(jp))
;
}
protected void applyPropertiesData(Operation op, BasicProperties props) {
OperationMap map = op.createMap("props");
map.putAnyNonEmpty("Type", props.getType());
map.putAnyNonEmpty("App Id", props.getAppId());
map.putAnyNonEmpty("User Id", props.getUserId());
map.put("Class Id", props.getClassId());
map.putAnyNonEmpty("Reply To", props.getReplyTo());
map.putAnyNonEmpty("Priority", props.getPriority());
map.putAnyNonEmpty("Class Name", props.getClassName());
map.putAnyNonEmpty("Timestamp", props.getTimestamp());
map.putAnyNonEmpty("Message Id", props.getMessageId());
map.putAnyNonEmpty("Expiration", props.getExpiration());
map.putAnyNonEmpty("Content Type", props.getContentType());
map.putAnyNonEmpty("Delivery Mode", props.getDeliveryMode());
map.putAnyNonEmpty("Correlation Id", props.getCorrelationId());
map.putAnyNonEmpty("Content Encoding", props.getContentEncoding());
updateHeadersMap(op, props.getHeaders());
}