Package com.couchace.core.spi.http

Examples of com.couchace.core.spi.http.HttpGetRequest


        return couchHttpResponse.isOk();
    }

    @Override
    public CouchDatabaseInfo databaseInfo() {
        HttpGetRequest httpGetRequest = new HttpGetRequest(databaseName, null, null, CouchMediaType.APPLICATION_JSON);
        CouchHttpResponse couchHttpResponse = httpClient.get(httpGetRequest);
        if (couchHttpResponse.isOk()) {
            return jsonStrategy.readDatabaseInfo(couchHttpResponse.getStringContent());
        } else if (couchHttpResponse.isNotFound()) {
            throw CouchException.notFound("Database " + databaseName + " does not exist");
View Full Code Here


    }

    public void assertConnection() throws CouchHttpException {
        CouchHttpResponse response;
        try {
            response = httpClient.get(new HttpGetRequest());
        } catch (Throwable e) {
            throw CouchHttpException.internalServerError(e);
        }
        if (response.isOk()) {
            String content = response.getStringContent();
View Full Code Here

    }

    public void assertConnection() throws CouchHttpException {
        CouchHttpResponse response;
        try {
            response = httpClient.get(new HttpGetRequest());
        } catch (Throwable e) {
            throw CouchHttpException.internalServerError(e);
        }
        if (response.isOk()) {
            String content = response.getStringContent();
View Full Code Here

        return couchHttpResponse.isOk();
    }

    @Override
    public CouchDatabaseInfo databaseInfo() {
        HttpGetRequest httpGetRequest = new HttpGetRequest(databaseName, null, null, CouchMediaType.APPLICATION_JSON);
        CouchHttpResponse couchHttpResponse = httpClient.get(httpGetRequest);
        if (couchHttpResponse.isOk()) {
            return jsonStrategy.readDatabaseInfo(couchHttpResponse.getStringContent());
        } else if (couchHttpResponse.isNotFound()) {
            throw CouchException.notFound("Database " + databaseName + " does not exist");
View Full Code Here

TOP

Related Classes of com.couchace.core.spi.http.HttpGetRequest

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.