diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-09-20 21:13:19 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@ericsson.com> | 2018-09-20 23:22:35 +0100 |
commit | a02548ec2e98a8a13cd76ecc83379b13cd26030b (patch) | |
tree | 1159028f8ac452b61fa4dc0e4a510ba7100ace26 /services/services-engine/src/test/resources/events/TestPojoEvent.json | |
parent | aece3940d349329efe6d220961f6f2a487f90565 (diff) |
Fix bug with POJO events in APex
When an envet should be decoded entirely into a POJO
and is too complex for Avro, apex decoding breaks.
This reviuew fixes thsi issue.
Issue-ID: POLICY-1034
Change-Id: Iccd739c4bb5c1645a2a7165f5bbfdfd4b964d79e
Signed-off-by: liamfallon <liam.fallon@ericsson.com>
Diffstat (limited to 'services/services-engine/src/test/resources/events/TestPojoEvent.json')
-rw-r--r-- | services/services-engine/src/test/resources/events/TestPojoEvent.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/services/services-engine/src/test/resources/events/TestPojoEvent.json b/services/services-engine/src/test/resources/events/TestPojoEvent.json new file mode 100644 index 000000000..ce2cb2b6b --- /dev/null +++ b/services/services-engine/src/test/resources/events/TestPojoEvent.json @@ -0,0 +1,15 @@ +{ + "anInt": 1, + "anInteger": 2, + "someString": "a string", + "testSubPojo": { + "anInt": 10, + "anInteger": 20, + "someString": "a sub string", + "testSubSubPojo": { + "anInt": 100, + "anInteger": 200, + "someString": "a sub sub string" + } + } +} |