Skip to content

Commit

Permalink
Add UUIDConverter
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Feb 17, 2024
1 parent fb5cd2a commit 4bd1139
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/src/main/asciidoc/RequestProcessingLifecycle.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1186,6 +1186,8 @@ indication of the intended message text) are as follows:
* jakarta.faces.converter.NumberConverter.PATTERN_detail=\{2}: ''\{0}'' is not a number pattern. Example: \{1}
* jakarta.faces.converter.ShortConverter.SHORT=\{2}: ''\{0}'' must be a number consisting of one or more digits.
* jakarta.faces.converter.ShortConverter.SHORT_detail=\{2}: ''\{0}'' must be a number between -32768 and 32767 Example: \{1}
* jakarta.faces.converter.UUIDConverter.UUID={2}: ''{0}'' must be a UUID.
* jakarta.faces.converter.UUIDConverter.UUID_detail={2}: ''{0}'' must be a UUID. Example: {1}
* jakarta.faces.converter.STRING=\{1}: Could not convert ''\{0}'' to a string.
* jakarta.faces.validator.BeanValidator.MESSAGE=\{0}
* jakarta.faces.validator.DoubleRangeValidator.MAXIMUM=\{1}: Validation Error: Value is greater than allowable maximum of ''\{0}''
Expand Down
7 changes: 7 additions & 0 deletions spec/src/main/asciidoc/UserInterfaceComponentModel.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1606,6 +1606,9 @@ _jakarta.faces.convert.NumberConverter_ (or a subclass of this class).
* _jakarta.faces.Short_ —An instance of
_jakarta.faces.convert.ShortConverter_ (or a subclass of this class).

* _jakarta.faces.UUID_ —An instance of
_jakarta.faces.convert.UUIDConverter_ (or a subclass of this class).

See the Javadocs for these classes
for a detailed description of the conversion operations they perform,
and the configuration properties that they support.
Expand Down Expand Up @@ -1658,6 +1661,10 @@ _jakarta.faces.convert.ShortConverter_ (or a subclass of this class).
-- An instance of _jakarta.faces.convert.EnumConverter_ (or a subclass of
this class).

* _java.lang.UUID_, and _java.lang.UUID.TYPE_
-- An instance of _jakarta.faces.convert.UUIDConverter_ (or a subclass of
this class).

See the Javadocs for these classes
for a detailed description of the conversion operations they perform,
and the configuration properties that they support.
Expand Down

0 comments on commit 4bd1139

Please sign in to comment.