Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setRedirectLocation (0.12 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java

        }
    
        /**
         * Sets the redirect location if the response is a redirect.
         *
         * @param redirectLocation the redirect location URL to set
         */
        public void setRedirectLocation(final String redirectLocation) {
            this.redirectLocation = redirectLocation;
        }
    
        /**
         * Gets the last modified date of the resource.
         *
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

                    responseData.setHttpStatusCode(Constants.OK_STATUS);
                    responseData.setCharSet(charset);
                    responseData.setContentLength(0);
                    responseData.setRedirectLocation(redirect);
                    ftpClientQueue.offer(client);
                    return;
                }
            }
    
            if (file.isFile()) {
                responseData.setHttpStatusCode(Constants.OK_STATUS_CODE);
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 39.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

                        } else {
                            redirectLocation = locationHeader.getValue();
                        }
                        responseData.setRedirectLocation(redirectLocation);
                        return responseData;
                    }
                    throw new CrawlingAccessException("Invalid redirect location at " + url);
                }
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 52.2K bytes
    - Viewed (0)
Back to top