Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCookieDefaultPath (0.17 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProvider.java

            this.harborConfig = harborConfig;
            this.cookieCipher = cookieCipher;
        }
    
        @Override
        public String provideDefaultPath() {
            return harborConfig.getCookieDefaultPath();
        }
    
        @Override
        public Integer provideDefaultExpire() {
            return harborConfig.getCookieDefaultExpireAsInteger();
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: The default path of cookie (basically '/' if no context path)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getCookieDefaultPath();
    
        /**
         * Get the value for the key 'cookie.default.expire'. <br>
         * The value is, e.g. 3600 <br>
         * comment: The default expire of cookie in seconds e.g. 31556926: one year, 86400: one day
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
Back to top