-
Notifications
You must be signed in to change notification settings - Fork 21
Integration #55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
iSnow
merged 26 commits into
frictionlessdata:integration
from
savantly-net:integration
Apr 30, 2020
Merged
Integration #55
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
b865a39
introduced a bug, reverting
JohannesJander f3b445f
Fix in BeanIterator
JohannesJander 2b7f87d
TimeField was still using the JodaTime classes, switched to java.time…
JohannesJander 8af3f31
Merge branch 'master' of https://github.com/frictionlessdata/tablesch…
JohannesJander 6f3d996
BOM's weren't realiably stripped
JohannesJander 5af03e7
Removed one source of NPE's
JohannesJander 37a701f
Some fuckery with the OSGeo repos going on
JohannesJander 6ff659c
NPE with getter-methods on bean class for BeanSchema which aren't dec…
JohannesJander 10f30e6
Mapping of UUIDs to String fields in BeanSchema
JohannesJander 4afdb47
replaces org.json with jackson
jdbranham 23daba2
fix indentation
jdbranham e219fa9
organize imports
jdbranham dd6d949
remove commented code
jdbranham eae4e1e
fix indentation
jdbranham 9202286
remove duplicative code
jdbranham abf2411
organize imports
jdbranham 2368e3c
ignore temp file
jdbranham 99e0d1e
don't initialize constraints during inferring
jdbranham 6c8e653
replace `Field.forType` implementation with Jackson type inferrence
jdbranham 05bf45a
decouple json library exceptions
jdbranham 4e2c681
add option for already parsed json #performance
jdbranham 3e8e79d
remove unecessary code
jdbranham 6ea5749
use accurate exceptions
jdbranham 2264057
log validation errors
jdbranham 28f6d9a
unwrap text nodes
jdbranham 7f11741
allows case insensitive enums
jdbranham File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
|
@@ -35,3 +35,5 @@ hs_err_pid* | |
|
||
|
||
|
||
/bin/ | ||
/schema.json |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Couldn't this
asJson
method be simplified, by annotating the class appropriately for Jackson to serialize it directly?