Package org.apache.jena.riot.web
Class HttpResponseLib
- java.lang.Object
-
- org.apache.jena.riot.web.HttpResponseLib
-
public class HttpResponseLib extends java.lang.ObjectA collection of handlers for response handling.- See Also:
HttpOp
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHttpResponseLib.HttpCaptureResponseResultSetResponse handling for SPARQL result sets.
-
Field Summary
Fields Modifier and Type Field Description static HttpResponseHandlerhttpDumpResponseDump, to System.out, a responsestatic HttpResponseHandlernullResponseConsume a response quietly.
-
Constructor Summary
Constructors Constructor Description HttpResponseLib()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HttpCaptureResponse<DatasetGraph>datasetHandler()Handle a DatasetGraph responsestatic HttpCaptureResponse<Graph>graphHandler()Handle a Graph response
-
-
-
Field Detail
-
httpDumpResponse
public static HttpResponseHandler httpDumpResponse
Dump, to System.out, a response
-
nullResponse
public static HttpResponseHandler nullResponse
Consume a response quietly.
-
-
Method Detail
-
graphHandler
public static HttpCaptureResponse<Graph> graphHandler()
Handle a Graph response
-
datasetHandler
public static HttpCaptureResponse<DatasetGraph> datasetHandler()
Handle a DatasetGraph response
-
-