Examples of ExtensionResponse


Examples of com.tinkerpop.rexster.extension.ExtensionResponse

    }

    @Test
    public void doEdgeToXml() {
        Edge e = this.graph.getEdge(11);
        ExtensionResponse extensionResponse = this.extension.doEdgeToXml(e);

        Assert.assertNotNull(extensionResponse);
        Response response = extensionResponse.getJerseyResponse();
        Assert.assertNotNull(response);
        Assert.assertEquals(Response.Status.OK.getStatusCode(), response.getStatus());

        String xml = (String) response.getEntity();
        Assert.assertEquals("<edge><id>11</id><label>created</label></edge>", xml);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.