@@ -253,6 +253,48 @@ public EntityV3 deserialize(JsonParser jp, DeserializationContext ctxt)
253
253
log .log (Level .FINER , "Input data does not match schema 'EntityV3System'" , e );
254
254
}
255
255
256
+ // deserialize EntityV3API
257
+ try {
258
+ boolean attemptParsing = true ;
259
+ // ensure that we respect type coercion as set on the client ObjectMapper
260
+ if (EntityV3API .class .equals (Integer .class )
261
+ || EntityV3API .class .equals (Long .class )
262
+ || EntityV3API .class .equals (Float .class )
263
+ || EntityV3API .class .equals (Double .class )
264
+ || EntityV3API .class .equals (Boolean .class )
265
+ || EntityV3API .class .equals (String .class )) {
266
+ attemptParsing = typeCoercion ;
267
+ if (!attemptParsing ) {
268
+ attemptParsing |=
269
+ ((EntityV3API .class .equals (Integer .class ) || EntityV3API .class .equals (Long .class ))
270
+ && token == JsonToken .VALUE_NUMBER_INT );
271
+ attemptParsing |=
272
+ ((EntityV3API .class .equals (Float .class ) || EntityV3API .class .equals (Double .class ))
273
+ && (token == JsonToken .VALUE_NUMBER_FLOAT
274
+ || token == JsonToken .VALUE_NUMBER_INT ));
275
+ attemptParsing |=
276
+ (EntityV3API .class .equals (Boolean .class )
277
+ && (token == JsonToken .VALUE_FALSE || token == JsonToken .VALUE_TRUE ));
278
+ attemptParsing |=
279
+ (EntityV3API .class .equals (String .class ) && token == JsonToken .VALUE_STRING );
280
+ }
281
+ }
282
+ if (attemptParsing ) {
283
+ tmp = tree .traverse (jp .getCodec ()).readValueAs (EntityV3API .class );
284
+ // TODO: there is no validation against JSON schema constraints
285
+ // (min, max, enum, pattern...), this does not perform a strict JSON
286
+ // validation, which means the 'match' count may be higher than it should be.
287
+ if (!((EntityV3API ) tmp ).unparsed ) {
288
+ deserialized = tmp ;
289
+ match ++;
290
+ }
291
+ log .log (Level .FINER , "Input data matches schema 'EntityV3API'" );
292
+ }
293
+ } catch (Exception e ) {
294
+ // deserialization failed, continue
295
+ log .log (Level .FINER , "Input data does not match schema 'EntityV3API'" , e );
296
+ }
297
+
256
298
EntityV3 ret = new EntityV3 ();
257
299
if (match == 1 ) {
258
300
ret .setActualInstance (deserialized );
@@ -301,11 +343,17 @@ public EntityV3(EntityV3System o) {
301
343
setActualInstance (o );
302
344
}
303
345
346
+ public EntityV3 (EntityV3API o ) {
347
+ super ("oneOf" , Boolean .FALSE );
348
+ setActualInstance (o );
349
+ }
350
+
304
351
static {
305
352
schemas .put ("EntityV3Service" , new GenericType <EntityV3Service >() {});
306
353
schemas .put ("EntityV3Datastore" , new GenericType <EntityV3Datastore >() {});
307
354
schemas .put ("EntityV3Queue" , new GenericType <EntityV3Queue >() {});
308
355
schemas .put ("EntityV3System" , new GenericType <EntityV3System >() {});
356
+ schemas .put ("EntityV3API" , new GenericType <EntityV3API >() {});
309
357
JSON .registerDescendants (EntityV3 .class , Collections .unmodifiableMap (schemas ));
310
358
}
311
359
@@ -317,7 +365,7 @@ public Map<String, GenericType> getSchemas() {
317
365
/**
318
366
* Set the instance that matches the oneOf child schema, check the instance parameter is valid
319
367
* against the oneOf child schemas: EntityV3Service, EntityV3Datastore, EntityV3Queue,
320
- * EntityV3System
368
+ * EntityV3System, EntityV3API
321
369
*
322
370
* <p>It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a
323
371
* composed schema (allOf, anyOf, oneOf).
@@ -340,21 +388,26 @@ public void setActualInstance(Object instance) {
340
388
super .setActualInstance (instance );
341
389
return ;
342
390
}
391
+ if (JSON .isInstanceOf (EntityV3API .class , instance , new HashSet <Class <?>>())) {
392
+ super .setActualInstance (instance );
393
+ return ;
394
+ }
343
395
344
396
if (JSON .isInstanceOf (UnparsedObject .class , instance , new HashSet <Class <?>>())) {
345
397
super .setActualInstance (instance );
346
398
return ;
347
399
}
348
400
throw new RuntimeException (
349
401
"Invalid instance type. Must be EntityV3Service, EntityV3Datastore, EntityV3Queue,"
350
- + " EntityV3System" );
402
+ + " EntityV3System, EntityV3API " );
351
403
}
352
404
353
405
/**
354
406
* Get the actual instance, which can be the following: EntityV3Service, EntityV3Datastore,
355
- * EntityV3Queue, EntityV3System
407
+ * EntityV3Queue, EntityV3System, EntityV3API
356
408
*
357
- * @return The actual instance (EntityV3Service, EntityV3Datastore, EntityV3Queue, EntityV3System)
409
+ * @return The actual instance (EntityV3Service, EntityV3Datastore, EntityV3Queue, EntityV3System,
410
+ * EntityV3API)
358
411
*/
359
412
@ Override
360
413
public Object getActualInstance () {
@@ -404,4 +457,15 @@ public EntityV3Queue getEntityV3Queue() throws ClassCastException {
404
457
public EntityV3System getEntityV3System () throws ClassCastException {
405
458
return (EntityV3System ) super .getActualInstance ();
406
459
}
460
+
461
+ /**
462
+ * Get the actual instance of `EntityV3API`. If the actual instance is not `EntityV3API`, the
463
+ * ClassCastException will be thrown.
464
+ *
465
+ * @return The actual instance of `EntityV3API`
466
+ * @throws ClassCastException if the instance is not `EntityV3API`
467
+ */
468
+ public EntityV3API getEntityV3API () throws ClassCastException {
469
+ return (EntityV3API ) super .getActualInstance ();
470
+ }
407
471
}
0 commit comments