Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for httpOnly (0.04 sec)

  1. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        }
    
        /**
         * Sets whether the user identification cookie should be HTTP-only.
         *
         * @param httpOnly true if the cookie should be HTTP-only (not accessible via JavaScript), false otherwise
         */
        public void setCookieHttpOnly(final boolean httpOnly) {
            this.httpOnly = httpOnly;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt

        val expiresAt: Long = cookie.expiresAt
        val hostOnly: Boolean = cookie.hostOnly
        val domain: String = cookie.domain
        val path: String = cookie.path
        val httpOnly: Boolean = cookie.httpOnly
        val secure: Boolean = cookie.secure
        val matches: Boolean = cookie.matches("".toHttpUrl())
        val parsedCookie: Cookie? = Cookie.parse("".toHttpUrl(), "")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 46.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                            if (logger.isDebugEnabled()) {
                                logger.debug(
                                        "Stored search parameters in cookie: name={}, size={}, maxAge={}, path={}, domain={}, secure={}, httpOnly={}, sameSite={}",
                                        cookie.getName(), encoded.length(), cookie.getMaxAge(), cookie.getPath(), cookie.getDomain(),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  4. okhttp/api/jvm/okhttp.api

    	public final fun domain ()Ljava/lang/String;
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun expiresAt ()J
    	public fun hashCode ()I
    	public final fun hostOnly ()Z
    	public final fun httpOnly ()Z
    	public final fun matches (Lokhttp3/HttpUrl;)Z
    	public final fun name ()Ljava/lang/String;
    	public final fun newBuilder ()Lokhttp3/Cookie$Builder;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
  5. okhttp/api/android/okhttp.api

    	public final fun domain ()Ljava/lang/String;
    	public fun equals (Ljava/lang/Object;)Z
    	public final fun expiresAt ()J
    	public fun hashCode ()I
    	public final fun hostOnly ()Z
    	public final fun httpOnly ()Z
    	public final fun matches (Lokhttp3/HttpUrl;)Z
    	public final fun name ()Ljava/lang/String;
    	public final fun newBuilder ()Lokhttp3/Cookie$Builder;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 69.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    cookie.search.parameter.max.length=1000
    # Cookie name used to store encoded search parameters before SSO login.
    cookie.search.parameter.name=fsrp
    # Whether to set HttpOnly attribute to the search parameter cookie.
    cookie.search.parameter.http_only=true
    # Whether to set Secure attribute to the search parameter cookie. Should be true in production environments using HTTPS.
    cookie.search.parameter.secure=
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         */
        String getCookieSearchParameterName();
    
        /**
         * Get the value for the key 'cookie.search.parameter.http_only'. <br>
         * The value is, e.g. true <br>
         * comment: Whether to set HttpOnly attribute to the search parameter cookie.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top