Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for setHttpOnly (0.06 seconds)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/CookieConfig.java

            return httpOnly;
        }
    
        /**
         * Sets whether the cookie is HTTP-only.
         *
         * @param httpOnly true for HTTP-only cookies
         */
        public void setHttpOnly(final boolean httpOnly) {
            this.httpOnly = httpOnly;
        }
    
        @Override
        public String toString() {
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 14:22:26 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                        LaResponseUtil.getOptionalResponse().ifPresent(res -> {
                            final Cookie cookie = new Cookie(fessConfig.getCookieSearchParameterName(), encoded);
                            cookie.setHttpOnly(Constants.TRUE.equalsIgnoreCase(fessConfig.getCookieSearchParameterHttpOnly()));
                            cookie.setSecure(isSearchParameterCookieSecure(req));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

         */
        protected void updateCookie(final String userCode, final int age) {
            final Cookie cookie = new Cookie(cookieName, userCode);
            cookie.setMaxAge(age);
            cookie.setHttpOnly(httpOnly);
            if (StringUtil.isNotBlank(cookieDomain)) {
                cookie.setDomain(cookieDomain);
            }
            if (StringUtil.isNotBlank(cookiePath)) {
                cookie.setPath(cookiePath);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 14.9K bytes
    - Click Count (0)
Back to Top