public MessagePart[] getRequestParts() {
List<MessagePart> result = new ArrayList<MessagePart>();
for (int c = 0; c < getPropertyCount(); c++) {
result.add(new ParameterMessagePart(getPropertyAt(c)));
}
if (getMethod() == RestRequestInterface.HttpMethod.POST
|| getMethod() == RestRequestInterface.HttpMethod.PUT
|| getMethod() == RestRequestInterface.HttpMethod.PATCH) {