All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.couchbase.client.core.message.config.BucketsConfigRequest Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
package com.couchbase.client.core.message.config;

import com.couchbase.client.core.message.AbstractCouchbaseRequest;

public class BucketsConfigRequest extends AbstractCouchbaseRequest implements ConfigRequest {

    public BucketsConfigRequest(String bucket, String password) {
        super(bucket, password);
    }

    @Override
    public String path() {
        return "/pools/default/buckets/";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy