185186187188189190191192
/** * @param r * @return */ public BucketPropertiesBuilder r(Quora r) { this.r = new Quorum(r); return this; }
190191192193194195196197
this.r = new Quorum(r); return this; } public BucketPropertiesBuilder r(Integer r) { this.r = new Quorum(r); return this; }
204205206207208209210211
/** * @param w * @return */ public BucketPropertiesBuilder w(Quora w) { this.w = new Quorum(w); return this; }
209210211212213214215216
this.w = new Quorum(w); return this; } public BucketPropertiesBuilder w(Integer w) { this.w = new Quorum(w); return this; }
223224225226227228229230
/** * @param rw * @return */ public BucketPropertiesBuilder rw(Quora rw) { this.rw = new Quorum(rw); return this; }
228229230231232233234235
this.rw = new Quorum(rw); return this; } public BucketPropertiesBuilder rw(Integer rw) { this.rw = new Quorum(rw); return this; }
242243244245246247248249
/** * @param dw * @return */ public BucketPropertiesBuilder dw(Quora dw) { this.dw = new Quorum(dw); return this; }
247248249250251252253254
this.dw = new Quorum(dw); return this; } public BucketPropertiesBuilder dw(Integer dw) { this.dw = new Quorum(dw); return this; }
261262263264265266267268
/** * @param pr * @return */ public BucketPropertiesBuilder pr(Quora pr) { this.pr = new Quorum(pr); return this; }
266267268269270271272273
this.pr = new Quorum(pr); return this; } public BucketPropertiesBuilder pr(Integer pr) { this.pr = new Quorum(pr); return this; }