Package com.couchace.core.api.http

Examples of com.couchace.core.api.http.CouchMediaType


                .put(entity);

            CouchStatusCode statusCode = CouchStatusCode.findByCode(response.getStatus());
            String eTag = getETag(response);
            byte[] content = response.readEntity(byte[].class);
            CouchMediaType mediaType = CouchMediaType.fromString(response.getMediaType().toString());
            int contentLength = response.getLength();
            return CouchHttpResponse.builder(CouchMethodType.PUT, webTarget.getUri(), statusCode)
                .setDocumentRevision(eTag)
                .setContent(mediaType, contentLength, content)
                .build();
View Full Code Here


            Response response = webTarget.request().delete();

            CouchStatusCode statusCode = CouchStatusCode.findByCode(response.getStatus());
            String eTag = getETag(response);
            byte[] content = response.readEntity(byte[].class);
            CouchMediaType mediaType = CouchMediaType.fromString(response.getMediaType().toString());
            int contentLength = response.getLength();
            return CouchHttpResponse.builder(CouchMethodType.DELETE, webTarget.getUri(), statusCode)
                .setDocumentRevision(eTag)
                .setContent(mediaType, contentLength, content)
                .build();
View Full Code Here

    }

    protected CouchHttpResponse buildCouchResponse(HttpRequest request, URI uri, Response response, String documentId) {
        CouchStatusCode statusCode = CouchStatusCode.findByCode(response.getStatus());
        String eTag = getETag(response);
        CouchMediaType mediaType = CouchMediaType.fromString(response.getMediaType().toString());

        Object content;
        if (mediaType.isTextType()) {
            content = response.readEntity(String.class);
        } else {
            content = response.readEntity(byte[].class);
        }
View Full Code Here

TOP

Related Classes of com.couchace.core.api.http.CouchMediaType

Copyright © 2018 www.massapicom. 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.