@@ -183,34 +183,42 @@ public Builder withNamespace(String namespace) {
183
183
this .classConfig .setNamespace (namespace );
184
184
return this ;
185
185
}
186
+
186
187
public Builder withShortName (String shortName ) {
187
188
this .classConfig .setShortName (shortName );
188
189
return this ;
189
190
}
191
+
190
192
public Builder withSet (String setName ) {
191
193
this .classConfig .setSet (setName );
192
194
return this ;
193
195
}
196
+
194
197
public Builder withTtl (int ttl ) {
195
198
this .classConfig .setTtl (ttl );
196
199
return this ;
197
200
}
201
+
198
202
public Builder withVersion (int version ) {
199
203
this .classConfig .setVersion (version );
200
204
return this ;
201
205
}
206
+
202
207
public Builder withSendKey (boolean sendKey ) {
203
208
this .classConfig .setSendKey (sendKey );
204
209
return this ;
205
210
}
211
+
206
212
public Builder withMapAll (boolean mapAll ) {
207
213
this .classConfig .setMapAll (mapAll );
208
214
return this ;
209
215
}
216
+
210
217
public Builder withDurableDelete (boolean durableDelete ) {
211
218
this .classConfig .setDurableDelete (durableDelete );
212
219
return this ;
213
220
}
221
+
214
222
public Builder withShortName (boolean sendKey ) {
215
223
this .classConfig .setSendKey (sendKey );
216
224
return this ;
@@ -221,7 +229,7 @@ public Builder withFactoryClassAndMethod(@NotNull Class<?> factoryClass, @NotNul
221
229
this .classConfig .setFactoryMethod (factoryMethod );
222
230
return this ;
223
231
}
224
-
232
+
225
233
public Builder withKeyField (String fieldName ) {
226
234
if (this .classConfig .getKey () == null ) {
227
235
this .classConfig .setKey (new KeyConfig ());
@@ -230,7 +238,7 @@ public Builder withKeyField(String fieldName) {
230
238
this .classConfig .getKey ().setField (fieldName );
231
239
return this ;
232
240
}
233
-
241
+
234
242
public Builder withKeyFieldAndStoreAsBin (String fieldName , boolean storeAsBin ) {
235
243
if (this .classConfig .getKey () == null ) {
236
244
this .classConfig .setKey (new KeyConfig ());
@@ -240,7 +248,7 @@ public Builder withKeyFieldAndStoreAsBin(String fieldName, boolean storeAsBin) {
240
248
this .classConfig .getKey ().setStoreAsBin (storeAsBin );
241
249
return this ;
242
250
}
243
-
251
+
244
252
public Builder withKeyGetterAndSetterOf (String getterName , String setterName ) {
245
253
if (this .classConfig .getKey () == null ) {
246
254
this .classConfig .setKey (new KeyConfig ());
@@ -250,12 +258,12 @@ public Builder withKeyGetterAndSetterOf(String getterName, String setterName) {
250
258
this .classConfig .getKey ().setSetter (setterName );
251
259
return this ;
252
260
}
253
-
261
+
254
262
public AeroBinConfig withFieldNamed (String fieldName ) {
255
263
validateFieldExists (fieldName );
256
264
return new AeroBinConfig (this , fieldName );
257
265
}
258
-
266
+
259
267
private void mergeBinConfig (BinConfig config ) {
260
268
List <BinConfig > bins = this .classConfig .getBins ();
261
269
for (BinConfig thisBin : bins ) {
@@ -271,46 +279,48 @@ public ClassConfig build() {
271
279
return this .classConfig ;
272
280
}
273
281
}
274
-
282
+
275
283
public static class AeroBinConfig {
276
284
private final Builder builder ;
277
285
private final BinConfig binConfig ;
278
-
286
+
279
287
public AeroBinConfig (Builder builder , String fieldName ) {
280
288
super ();
281
289
this .builder = builder ;
282
290
this .binConfig = new BinConfig ();
283
291
this .binConfig .setField (fieldName );
284
292
}
285
-
293
+
286
294
public Builder mappingToBin (String name ) {
287
295
this .binConfig .setName (name );
288
296
return this .end ();
289
297
}
290
-
298
+
291
299
public Builder beingReferencedBy (AerospikeReference .ReferenceType type ) {
292
- this .binConfig .setReference (new ReferenceConfig (type , false ));
300
+ this .binConfig .setReference (new ReferenceConfig (type , false , true ));
293
301
return this .end ();
294
302
}
295
-
303
+
296
304
public Builder beingLazilyReferencedBy (AerospikeReference .ReferenceType type ) {
297
- this .binConfig .setReference (new ReferenceConfig (type , true ));
305
+ this .binConfig .setReference (new ReferenceConfig (type , true , true ));
298
306
return this .end ();
299
307
}
300
-
308
+
301
309
public Builder beingEmbeddedAs (AerospikeEmbed .EmbedType type ) {
302
310
EmbedConfig embedConfig = new EmbedConfig ();
303
311
embedConfig .setType (type );
304
312
this .binConfig .setEmbed (embedConfig );
305
313
return this .end ();
306
314
}
315
+
307
316
public Builder beingEmbeddedAs (AerospikeEmbed .EmbedType type , AerospikeEmbed .EmbedType elementType ) {
308
317
EmbedConfig embedConfig = new EmbedConfig ();
309
318
embedConfig .setType (type );
310
319
embedConfig .setElementType (elementType );
311
320
this .binConfig .setEmbed (embedConfig );
312
321
return this .end ();
313
322
}
323
+
314
324
public Builder beingEmbeddedAs (AerospikeEmbed .EmbedType type , AerospikeEmbed .EmbedType elementType , boolean saveKey ) {
315
325
EmbedConfig embedConfig = new EmbedConfig ();
316
326
embedConfig .setType (type );
@@ -319,6 +329,7 @@ public Builder beingEmbeddedAs(AerospikeEmbed.EmbedType type, AerospikeEmbed.Emb
319
329
this .binConfig .setEmbed (embedConfig );
320
330
return this .end ();
321
331
}
332
+
322
333
/**
323
334
* Exclude the field. An excluded field doesn't need any other config, so return the parent.
324
335
* This allows for more natural syntax like:
@@ -327,17 +338,16 @@ public Builder beingEmbeddedAs(AerospikeEmbed.EmbedType type, AerospikeEmbed.Emb
327
338
* .withFieldName("ignoreMe").beingExcluded()
328
339
* .end()
329
340
* </code>
330
- * @return
341
+ * @return Parent builder
331
342
*/
332
343
public Builder beingExcluded () {
333
344
this .binConfig .setExclude (true );
334
345
return this .end ();
335
346
}
336
-
347
+
337
348
private Builder end () {
338
349
this .builder .mergeBinConfig (binConfig );
339
350
return this .builder ;
340
351
}
341
352
}
342
-
343
- }
353
+ }
0 commit comments