We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The goal of this task is to make ShapeShift mapping work with constructor injection, to avoid having to supply object suppliers for every object.
Preliminary conclusions:
Simplest example:
@DefaultMappingTarget( class FromClass { @MappedField var first: String "first" @MappedField var second: String = "second" } class ToClass( val first: String, val second: String, val third: String? )
Should result in a new instance of ToClass with the fields first and second mapped, and the field third being passed to the constructor as null
null
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The goal of this task is to make ShapeShift mapping work with constructor injection, to avoid having to supply object suppliers for every object.
Preliminary conclusions:
Simplest example:
Should result in a new instance of ToClass with the fields first and second mapped, and the field third being passed to the constructor as
null
The text was updated successfully, but these errors were encountered: