Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addCookie (0.2 sec)

  1. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

            Cookie cookie;
    
            roleSet = buildByCookie(roleQueryHelperImpl, getMockRequest());
            assertEquals(0, roleSet.size());
    
            cookie = new Cookie("aaa", "bbb");
            getMockRequest().addCookie(cookie);
            try {
                roleSet = buildByCookie(roleQueryHelperImpl, getMockRequest());
                fail();
            } catch (final NullPointerException e) {
                // ok
            }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                cookie.setPath(cookiePath);
            }
            if (cookieSecure != null) {
                cookie.setSecure(cookieSecure);
            }
            LaResponseUtil.getResponse().addCookie(cookie);
        }
    
        protected String getUserCodeFromCookie(final HttpServletRequest request) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final Cookie[] cookies = request.getCookies();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            if (cookieStore != null) {
                final Cookie[] cookies = getInitParameter(COOKIES_PROPERTY, new Cookie[0], Cookie[].class);
                for (final Cookie cookie : cookies) {
                    cookieStore.addCookie(cookie);
                }
            }
    
            // cookie registry
            final Lookup<CookieSpecProvider> cookieSpecRegistry = buildCookieSpecRegistry();
            if (cookieSpecRegistry != null) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu May 09 09:29:26 UTC 2024
    - 41K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg net/http, method (*Client) PostForm(string, url.Values) (*Response, error)
    pkg net/http, method (*Cookie) String() string
    pkg net/http, method (*ProtocolError) Error() string
    pkg net/http, method (*Request) AddCookie(*Cookie)
    pkg net/http, method (*Request) Cookie(string) (*Cookie, error)
    pkg net/http, method (*Request) Cookies() []*Cookie
    pkg net/http, method (*Request) FormFile(string) (multipart.File, *multipart.FileHeader, error)
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top