-
Notifications
You must be signed in to change notification settings - Fork 370
Closed
Description
Most of the methods are missing detailed Javadoc for the parameters for the org.owasp.esapi.Validator interface, yet they are present for many of the implementation methods in org.owasp.esapi.reference.DefaultValidator.
This should be fixed. Generally the implementation classes (in this case, the DefaultValidator class) should just use the {@inheritDoc} construct and inherit documentation from their interfaces rather than providing their own unless they are imposing a change in the semantics or the programming contract (which they really should NOT be doing).
Mostly, I think we can just clean this up by moving most of the DefaultValidator Javadoc back up to the Validator interface.