Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getDefaultLong (0.05 seconds)

  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);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 02:14:37 GMT 2026
    - 16.4K bytes
    - Click Count (0)
Back to Top