You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 12, 2020. It is now read-only.
Currently Rave can only validate fields in a model that are exposed through public/protected getters and setters. This leaves private and some protected member fields of the model unvalidated and vulnerable to errors. We should add the ability for Rave to reflectively check private member fields and have an auto-value extension that generates validation for private and protected fields.
Alternatively we could use byte code injection to injected validation code right into the model.
Currently Rave can only validate fields in a model that are exposed through public/protected getters and setters. This leaves private and some protected member fields of the model unvalidated and vulnerable to errors. We should add the ability for Rave to reflectively check private member fields and have an auto-value extension that generates validation for private and protected fields.
Alternatively we could use byte code injection to injected validation code right into the model.