charset = new MediaType.Parameter(CHARSET_KEY, props.getCharset().toLowerCase());
}
if (props.getOperation() != null) {
action = new MediaType.Parameter(ACTION_KEY, props.getOperation());
}
return contentType.toStringWithParams(new MediaType.Parameter[] {charset, action});
}
private static String getAcceptTypeProperty(MessageProperties props) {
MediaType[] acceptTypes = props.getAcceptTypes();
if (acceptTypes == null || acceptTypes.length == 0) {