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
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
847
847
848
-
This report was generated on **Wed Dec 18 17:20:44 CET 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
848
+
This report was generated on **Fri Dec 20 11:30:40 CET 2024** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
option(default_message)="The field `{parent.type}.{field.name}` of the type `{field.type}` must have a value.";
653
+
option(default_message)="The field `${parent.type}.${field.name}` of the type `${field.type}` must have a value.";
654
654
655
655
// A user-defined validation error format message.
656
656
//
@@ -662,17 +662,17 @@ message IfMissingOption {
662
662
//
663
663
// The specified message may include the following placeholders:
664
664
//
665
-
// 1. `{field.name}` – the field name.
666
-
// 2. `{field.type}` – the fully qualified name of the field type.
667
-
// 3. `{parent.type}` – the fully qualified name of the field declaring type.
665
+
// 1. `${field.name}` – the field name.
666
+
// 2. `${field.type}` – the fully qualified name of the field type.
667
+
// 3. `${parent.type}` – the fully qualified name of the field declaring type.
668
668
//
669
669
// The placeholders will be replaced at runtime when the error is constructed.
670
670
//
671
671
// Example: Using the `(if_missing)` option.
672
672
//
673
673
// message Student {
674
674
// Name name = 1 [(required) = true,
675
-
// (if_missing).error_msg = "The `{field.name}` field is mandatory for `{parent.type}`."];
675
+
// (if_missing).error_msg = "The `${field.name}` field is mandatory for `${parent.type}`."];
676
676
// }
677
677
//
678
678
stringerror_msg=2;
@@ -689,14 +689,14 @@ message IfMissingOption {
689
689
// double value = 1 [(min) = {
690
690
// value: "0.0",
691
691
// exclusive: true,
692
-
// error_msg: "The temperature cannot reach `{min.value}K`, but provided `{field.value}`."
692
+
// error_msg: "The temperature cannot reach `${min.value}K`, but provided `${field.value}`."
693
693
// }];
694
694
// }
695
695
//
696
696
messageMinOption {
697
697
698
698
// The default error message.
699
-
option(default_message)="The field `{parent.type}.{field.name}` must be {max.operator} {min.value}.";
699
+
option(default_message)="The field `${parent.type}.${field.name}` must be ${max.operator} ${min.value}.";
700
700
701
701
// The string representation of the minimum field value.
702
702
stringvalue=1;
@@ -714,12 +714,12 @@ message MinOption {
714
714
//
715
715
// The specified message may include the following placeholders:
716
716
//
717
-
// 1. `{field.value}` - the field value.
718
-
// 2. `{field.name}` – the field name.
719
-
// 3. `{field.type}` – the fully qualified name of the field type.
720
-
// 4. `{parent.type}` – the fully qualified name of the field declaring type.
721
-
// 5. `{min.value}` – the specified minimum `value`.
722
-
// 6. `{min.operator}` – if `exclusive` is set to `true`, this placeholder equals to ">".
717
+
// 1. `${field.value}` - the field value.
718
+
// 2. `${field.name}` – the field name.
719
+
// 3. `${field.type}` – the fully qualified name of the field type.
720
+
// 4. `${parent.type}` – the fully qualified name of the field declaring type.
721
+
// 5. `${min.value}` – the specified minimum `value`.
722
+
// 6. `${min.operator}` – if `exclusive` is set to `true`, this placeholder equals to ">".
723
723
// Otherwise, ">=".
724
724
//
725
725
// The placeholders will be replaced at runtime when the error is constructed.
@@ -736,13 +736,13 @@ message MinOption {
736
736
//
737
737
// message TowerCrane {
738
738
// double load = 1 [(max).value = "4.2",
739
-
// (max).error_msg = "The crane load in `{parent.type}` can not exceed `{max.value}` tons, but provided `{field.value}`."];
739
+
// (max).error_msg = "The crane load in `${parent.type}` can not exceed `${max.value}` tons, but provided `${field.value}`."];
740
740
// }
741
741
//
742
742
messageMaxOption {
743
743
744
744
// The default error message.
745
-
option(default_message)="The field `{parent.type}.{field.name}` must be {max.operator} {max.value}.";
745
+
option(default_message)="The field `${parent.type}.${field.name}` must be ${max.operator} ${max.value}.";
746
746
747
747
// The string representation of the maximum field value.
748
748
stringvalue=1;
@@ -760,12 +760,12 @@ message MaxOption {
760
760
//
761
761
// The specified message may include the following placeholders:
762
762
//
763
-
// 1. `{field.name}` – the field name.
764
-
// 2. `{field.value}` - the field value.
765
-
// 3. `{field.type}` – the fully qualified name of the field type.
766
-
// 4. `{parent.type}` – the fully qualified name of the field declaring type.
767
-
// 5. `{max.value}` – the specified maximum `value`.
768
-
// 6. `{max.operator}` – if `exclusive` is set to `true`, this placeholder equals to "<".
763
+
// 1. `${field.name}` – the field name.
764
+
// 2. `${field.value}` - the field value.
765
+
// 3. `${field.type}` – the fully qualified name of the field type.
766
+
// 4. `${parent.type}` – the fully qualified name of the field declaring type.
767
+
// 5. `${max.value}` – the specified maximum `value`.
768
+
// 6. `${max.operator}` – if `exclusive` is set to `true`, this placeholder equals to "<".
769
769
// Otherwise, "<=".
770
770
//
771
771
// The placeholders will be replaced at runtime when the error is constructed.
@@ -782,13 +782,13 @@ message MaxOption {
782
782
//
783
783
// message CreateAccount {
784
784
// string id = 1 [(pattern).regex = "^[A-Za-z0-9+]+$",
785
-
// (pattern).error_msg = "ID must be alphanumerical in `{parent.type}`. Provided: `{field.value}`."];
785
+
// (pattern).error_msg = "ID must be alphanumerical in `${parent.type}`. Provided: `${field.value}`."];
786
786
// }
787
787
//
788
788
messagePatternOption {
789
789
790
790
// The default error message.
791
-
option(default_message)="The `{parent.type}.{field.name}` field must match the regular expression `{regex.pattern}` (modifiers: `{regex.modifiers}`). The passed value: `{field.value}`.";
791
+
option(default_message)="The `${parent.type}.${field.name}` field must match the regular expression `${regex.pattern}` (modifiers: `${regex.modifiers}`). The passed value: `${field.value}`.";
792
792
793
793
// The regular expression to match.
794
794
stringregex=1;
@@ -806,12 +806,12 @@ message PatternOption {
806
806
//
807
807
// The specified message may include the following placeholders:
808
808
//
809
-
// 1. `{field.name}` – the field name.
810
-
// 2. `{field.value}` - the field value.
811
-
// 3. `{field.type}` – the fully qualified name of the field type.
812
-
// 4. `{parent.type}` – the fully qualified name of the field declaring type.
813
-
// 5. `{regex.pattern}` – the specified regex pattern.
814
-
// 6. `{regex.modifiers}` – the specified modifiers, if any. For example, `[dot_all, unicode]`.
809
+
// 1. `${field.name}` – the field name.
810
+
// 2. `${field.value}` - the field value.
811
+
// 3. `${field.type}` – the fully qualified name of the field type.
812
+
// 4. `${parent.type}` – the fully qualified name of the field declaring type.
813
+
// 5. `${regex.pattern}` – the specified regex pattern.
814
+
// 6. `${regex.modifiers}` – the specified modifiers, if any. For example, `[dot_all, unicode]`.
815
815
//
816
816
// The placeholders will be replaced at runtime when the error is constructed.
817
817
//
@@ -876,7 +876,7 @@ message PatternOption {
876
876
messageIfInvalidOption {
877
877
878
878
// The default error message.
879
-
option(default_message)="The field `{parent.type}.{field.name}` of the type `{field.type}` is invalid. The field value: `{field.value}`.";
879
+
option(default_message)="The field `${parent.type}.${field.name}` of the type `${field.type}` is invalid. The field value: `${field.value}`.";
880
880
881
881
// A user-defined validation error format message.
882
882
//
@@ -888,18 +888,18 @@ message IfInvalidOption {
888
888
//
889
889
// The specified message may include the following placeholders:
890
890
//
891
-
// 1. `{field.name}` – the field name.
892
-
// 2. `{field.value}` - the field value.
893
-
// 3. `{field.type}` – the fully qualified name of the field type.
894
-
// 4. `{parent.type}` – the fully qualified name of the field declaring type.
891
+
// 1. `${field.name}` – the field name.
892
+
// 2. `${field.value}` - the field value.
893
+
// 3. `${field.type}` – the fully qualified name of the field type.
894
+
// 4. `${parent.type}` – the fully qualified name of the field declaring type.
895
895
//
896
896
// The placeholders will be replaced at runtime when the error is constructed.
// (if_invalid).error_msg = "The `{field.name}` field is invalid."];
902
+
// (if_invalid).error_msg = "The `${field.name}` field is invalid."];
903
903
// }
904
904
//
905
905
stringerror_msg=2;
@@ -929,7 +929,7 @@ message IfInvalidOption {
929
929
messageGoesOption {
930
930
931
931
// The default error message.
932
-
option(default_message)="The field `{goes.companion}` must also be set when `{field.name}` is set in `{parent.type}`.";
932
+
option(default_message)="The field `${goes.companion}` must also be set when `${field.name}` is set in `${parent.type}`.";
933
933
934
934
// The name of the companion field whose presence is required for this field to be valid.
935
935
stringwith=1;
@@ -941,11 +941,11 @@ message GoesOption {
941
941
//
942
942
// The specified message may include the following placeholders:
943
943
//
944
-
// 1. `{field.name}` – the field name.
945
-
// 2. `{field.value}` – the field value.
946
-
// 3. `{field.type}` – the fully qualified name of the field type.
947
-
// 4. `{parent.type}` – the fully qualified name of the field declaring type.
948
-
// 5. `{goes.companion}` – the name of the companion specified in `with`.
944
+
// 1. `${field.name}` – the field name.
945
+
// 2. `${field.value}` – the field value.
946
+
// 3. `${field.type}` – the fully qualified name of the field type.
947
+
// 4. `${parent.type}` – the fully qualified name of the field declaring type.
948
+
// 5. `${goes.companion}` – the name of the companion specified in `with`.
949
949
//
950
950
// The placeholders will be replaced at runtime when the error is constructed.
951
951
//
@@ -1121,17 +1121,17 @@ message CompareByOption {
1121
1121
messageIfSetAgainOption {
1122
1122
1123
1123
// The default error message.
1124
-
option(default_message)="The field `{parent.type}.{field.name}` of the type `{field.type}` already has the value `{field.value}` and cannot be reassigned to `{field.proposed_value}`.";
1124
+
option(default_message)="The field `${parent.type}.${field.name}` of the type `${field.type}` already has the value `${field.value}` and cannot be reassigned to `${field.proposed_value}`.";
1125
1125
1126
1126
// A user-defined error message.
1127
1127
//
1128
1128
// The specified message may include the following placeholders:
1129
1129
//
1130
-
// 1. `{field.name}` – the field name.
1131
-
// 2. `{field.type}` – the fully qualified name of the field type.
1132
-
// 3. `{field.value}` – the current field value.
1133
-
// 4. `{field.proposed_value}` – the value, which was attempted to be set.
1134
-
// 5. `{parent.type}` – the fully qualified name of the field declaring type.
1130
+
// 1. `${field.name}` – the field name.
1131
+
// 2. `${field.type}` – the fully qualified name of the field type.
1132
+
// 3. `${field.value}` – the current field value.
1133
+
// 4. `${field.proposed_value}` – the value, which was attempted to be set.
1134
+
// 5. `${parent.type}` – the fully qualified name of the field declaring type.
1135
1135
//
1136
1136
// The placeholders will be replaced at runtime when the error is constructed.
option(default_message)="The field `{parent.type}.{field.name}` of the type `{field.type}` must not contain duplicates. The duplicates found: `{field.duplicates}`.";
1155
+
option(default_message)="The field `${parent.type}.${field.name}` of the type `${field.type}` must not contain duplicates. The duplicates found: `${field.duplicates}`.";
1156
1156
1157
1157
// A user-defined error message.
1158
1158
//
1159
1159
// The specified message may include the following placeholders:
1160
1160
//
1161
-
// 1. `{field.name}` – the field name.
1162
-
// 2. `{field.type}` – the fully qualified name of the field type.
1163
-
// 3. `{field.value}` – the field value (the whole collection).
1164
-
// 4. `{field.duplicates}` – the duplicates found (elements that occur more than once).
1165
-
// 5. `{parent.type}` – the fully qualified name of the field declaring type.
1161
+
// 1. `${field.name}` – the field name.
1162
+
// 2. `${field.type}` – the fully qualified name of the field type.
1163
+
// 3. `${field.value}` – the field value (the whole collection).
1164
+
// 4. `${field.duplicates}` – the duplicates found (elements that occur more than once).
1165
+
// 5. `${parent.type}` – the fully qualified name of the field declaring type.
1166
1166
//
1167
1167
// The placeholders will be replaced at runtime when the error is constructed.
1168
1168
//
1169
1169
// Example: Using the `(distinct)` option.
1170
1170
//
1171
1171
// message Blizzard {
1172
1172
// repeated Snowflake = 1 [(distinct) = true,
1173
-
// (if_has_duplicates).error_msg = "Every snowflake must be unique! The duplicates found: `{field.duplicates}`."];
1173
+
// (if_has_duplicates).error_msg = "Every snowflake must be unique! The duplicates found: `${field.duplicates}`."];
0 commit comments