280281282283284285286287
/** * @param pw * @return */ public BucketPropertiesBuilder pw(Quora pw) { this.pw = new Quorum(pw); return this; }
285286287288289290291292
this.pw = new Quorum(pw); return this; } public BucketPropertiesBuilder pw(Integer pw) { this.pw = new Quorum(pw); return this; }
181182183184185186187188
/** * @param r * @return */ public BucketPropertiesBuilder r(Quora r) { this.r = new Quorum(r); return this; }
186187188189190191192193
this.r = new Quorum(r); return this; } public BucketPropertiesBuilder r(int r) { this.r = new Quorum(r); return this; }
200201202203204205206207
/** * @param w * @return */ public BucketPropertiesBuilder w(Quora w) { this.w = new Quorum(w); return this; }
205206207208209210211212
this.w = new Quorum(w); return this; } public BucketPropertiesBuilder w(int w) { this.w = new Quorum(w); return this; }
219220221222223224225226
/** * @param rw * @return */ public BucketPropertiesBuilder rw(Quora rw) { this.rw = new Quorum(rw); return this; }
224225226227228229230231
this.rw = new Quorum(rw); return this; } public BucketPropertiesBuilder rw(int rw) { this.rw = new Quorum(rw); return this; }
238239240241242243244245
/** * @param dw * @return */ public BucketPropertiesBuilder dw(Quora dw) { this.dw = new Quorum(dw); return this; }
243244245246247248249250
this.dw = new Quorum(dw); return this; } public BucketPropertiesBuilder dw(int dw) { this.dw = new Quorum(dw); return this; }