Skip to content
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

Updates for Jakarta Bean Validation to Jakarta Validation name change, #680 #708

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions spec/src/main/asciidoc/architecture.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,13 @@ Jakarta Server Faces is a web-tier presentation framework that provides a compon

This specification allows any bean to be assigned a name. Thus, a Jakarta Server Faces application may take advantage of the sophisticated context and dependency injection model defined by this specification.

==== Relationship to Jakarta Bean Validation
==== Relationship to Jakarta Validation

Jakarta Bean Validation provides a unified way of declaring and defining constraints on an object model, defines a runtime engine to validate objects and provides method validation.
Jakarta Validation provides a unified way of declaring and defining constraints on an object model, defines a runtime engine to validate objects and provides method validation.

The Jakarta Bean Validation specification defines beans for Bean Validation managed objects including `Validator` and `ValidatorFactory`.
A number of Bean Validation managed instances, including `ConstraintValidator` s can take advantage of dependency injection.
Bean Validation also provides support for method parameter validation on any bean.
The Jakarta Validation specification defines beans for certain managed objects, including `Validator` and `ValidatorFactory`.
A number of Jakarta Validation managed instances, including ``ConstraintValidator``s, can take advantage of dependency injection.
Jakarta Validation also provides support for method parameter validation on any bean.

=== Introductory examples

Expand Down