* @see org.wymiwyg.rwcf.Handler#handle(org.wymiwyg.wrhapi.Request,
* org.wymiwyg.rwcf.Response, org.wymiwyg.rwcf.HandlerChain)
*/
public void handle(Request request, Response response, HandlerChain chain)
throws HandlerException {
Response responseWrapper;
MimeType targetType = getPrefferedTarget(request);
responseWrapper = new ResponseWrapper(response, new EnhancedRequest(request), targetType, localized);
Request requestWrapper = new RequestWrapper(request,
"application/java-instance?class=com.hp.hpl.jena.rdf.model.Model");
chain.doNext(requestWrapper, responseWrapper);