Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GoForm (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

     * or search results. This form captures the necessary parameters for document
     * access tracking and error page fallback information.
     *
     */
    public class GoForm {
    
        /**
         * Default constructor for GoForm.
         */
        public GoForm() {
            super();
        }
    
        /**
         * Document identifier for the target document to redirect to.
         * This is required and limited to 100 characters.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

         * @return action response for redirection or content streaming
         * @throws IOException if an I/O error occurs during content retrieval
         */
        @Execute
        public ActionResponse index(final GoForm form) throws IOException {
            validate(form, messages -> {}, () -> asHtml(virtualHost(path_Error_ErrorJsp)));
            if (isLoginRequired()) {
                return redirectToLogin();
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
Back to top