Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getDefaultLong (0.65 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

         *
         * @param key the property key to look up
         * @param defaultValue the default value if the property is not found or invalid
         * @return the long value or default value
         */
        protected Long getDefaultLong(final String key, final Long defaultValue) {
            final String value = systemProperties.getProperty(key);
            if (value != null) {
                try {
                    return Long.parseLong(value);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top