in src/main/java/org/apache/sling/nosql/couchbase/client/impl/CouchbaseEnvironmentSingleton.java [54:61]
public static Bucket openBucket(Cluster cluster, String bucketName, String bucketPassword) {
if (bucketPassword != null) {
return cluster.openBucket(bucketName, bucketPassword);
}
else {
return cluster.openBucket(bucketName);
}
}