writeContent(edm, new HttpPost(createUri(resourcePath, null)), uriInfo, data, responseHandler);
}
@Override
public <T> void update(Edm edm, String resourcePath, Object data, Olingo2ResponseHandler<T> responseHandler) {
final UriInfoImpl uriInfo = parseUri(edm, resourcePath, null);
writeContent(edm, new HttpPut(createUri(resourcePath, null)), uriInfo, data, responseHandler);
}