-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add deserialize options for jackson CloudEventDeserializer
Signed-off-by: mhyeon-lee <[email protected]>
- Loading branch information
mhyeon-lee
committed
Dec 8, 2021
1 parent
20f367d
commit 2c71c8a
Showing
7 changed files
with
192 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
formats/json-jackson/src/test/resources/v03/json_data_with_ext_invalid.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"specversion": "0.3", | ||
"id": "1", | ||
"type": "mock.test", | ||
"source": "http://localhost/source", | ||
"schemaurl": "http://localhost/schema", | ||
"datacontenttype": "application/json", | ||
"data": {}, | ||
"subject": "sub", | ||
"time": "2018-04-26T14:48:09+02:00", | ||
"astring": "aaa", | ||
"aboolean": true, | ||
"anumber": 10, | ||
"a_invalid_name": "invalidName" | ||
} |
14 changes: 14 additions & 0 deletions
14
formats/json-jackson/src/test/resources/v03/json_data_with_ext_upper_case.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"specversion": "0.3", | ||
"id": "1", | ||
"type": "mock.test", | ||
"source": "http://localhost/source", | ||
"schemaurl": "http://localhost/schema", | ||
"datacontenttype": "application/json", | ||
"data": {}, | ||
"subject": "sub", | ||
"time": "2018-04-26T14:48:09+02:00", | ||
"aString": "aaa", | ||
"aBoolean": true, | ||
"aNumber": 10 | ||
} |
15 changes: 15 additions & 0 deletions
15
formats/json-jackson/src/test/resources/v1/json_data_with_ext_invalid.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"specversion": "1.0", | ||
"id": "1", | ||
"type": "mock.test", | ||
"source": "http://localhost/source", | ||
"dataschema": "http://localhost/schema", | ||
"datacontenttype": "application/json", | ||
"data": {}, | ||
"subject": "sub", | ||
"time": "2018-04-26T14:48:09+02:00", | ||
"astring": "aaa", | ||
"aboolean": true, | ||
"anumber": 10, | ||
"a_invalid_name": "invalidName" | ||
} |
14 changes: 14 additions & 0 deletions
14
formats/json-jackson/src/test/resources/v1/json_data_with_ext_upper_case.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"specversion": "1.0", | ||
"id": "1", | ||
"type": "mock.test", | ||
"source": "http://localhost/source", | ||
"dataschema": "http://localhost/schema", | ||
"datacontenttype": "application/json", | ||
"data": {}, | ||
"subject": "sub", | ||
"time": "2018-04-26T14:48:09+02:00", | ||
"aString": "aaa", | ||
"aBoolean": true, | ||
"aNumber": 10 | ||
} |