- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for maxKey (0.03 sec)
-
src/main/java/org/codelibs/fess/validation/CustomSizeValidator.java
if (StringUtil.isNotBlank(minKey)) { min = Integer.parseInt(fessConfig.get(minKey)); } final String maxKey = constraintAnnotation.maxKey(); if (StringUtil.isNotBlank(maxKey)) { max = Integer.parseInt(fessConfig.get(maxKey)); } message = constraintAnnotation.message(); validateParameters(); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
// Test field with CustomSize annotation for testing @CustomSize(minKey = "test.min", maxKey = "test.max") private String testField; // Test field with only minKey @CustomSize(minKey = "test.min.only") private String testFieldMinOnly; // Test field with only maxKey @CustomSize(maxKey = "test.max.only") private String testFieldMaxOnly; // Test field with custom message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0)