- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for minKey (0.15 sec)
-
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
public class CustomSizeTest extends UnitFessTestCase { // 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")
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/main/java/org/codelibs/fess/validation/CustomSizeValidator.java
public void initialize(final CustomSize constraintAnnotation) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String minKey = constraintAnnotation.minKey(); if (StringUtil.isNotBlank(minKey)) { min = Integer.parseInt(fessConfig.get(minKey)); } final String maxKey = constraintAnnotation.maxKey(); if (StringUtil.isNotBlank(maxKey)) {
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/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)