We'd like to save users from typing:
JacksonHandle handle = new JacksonHandle();
handle.setMimetype(RDFMimeTypes.RDFJSON);
executeConstruct(qdef, handle);
If we default handles with Format.JSON to automatically use mimetype RDFJSON, instead they can simply do:
executeConstruct(qdef, new JacksonHandle());
We'd like to do the same for XML handles, so they'll default to RDFXML when sending a construct or describe.