use of org.apache.jena.update.UpdateRequest in project jena by apache.
the class UpdateBuilder method buildRequest.
/**
* Build as an UpdateRequest with prefix mapping set.
*
* @return a new UpdateRequest
*/
public UpdateRequest buildRequest() {
UpdateRequest req = new UpdateRequest(build());
req.setPrefixMapping(prefixHandler.getPrefixes());
return req;
}
Aggregations