response = builder.type(contentType).put(ClientResponse.class, formParamBuilder.toString());
} else
response = builder.type(contentType).put(ClientResponse.class, serialize(body));
}
} else if ("DELETE".equals(method)) {
builder.header("Lumify-CSRF-Token", this.csrfToken);
if (body == null) {
response = builder.delete(ClientResponse.class, serialize(body));
} else {
response = builder.type(contentType).delete(ClientResponse.class, serialize(body));
}