}
protected HttpMethod createPatchMethod(MuleMessage message, String outputEncoding) throws Exception
{
URI uri = getURI(message);
PatchMethod patchMethod = new PatchMethod(uri.toString());
Object payload = message.getPayload();
setupEntityMethod(payload, outputEncoding, message, patchMethod);
checkForContentType(message, patchMethod);
return patchMethod;