Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for requestFile (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/sereq/UploadForm.java

         * The multipart file containing the search request configurations to be uploaded.
         * This file should contain search request definitions and configurations.
         */
        @Required
        public MultipartFormFile requestFile;
    
        /**
         * Default constructor for UploadForm.
         * Creates a new instance with default values.
         */
        public UploadForm() {
            // Default constructor
        }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/sereq/AdminSereqAction.java

            String header = null;
            final StringBuilder buf = new StringBuilder(1000);
            try (final BufferedReader reader = new BufferedReader(new InputStreamReader(form.requestFile.getInputStream(), Constants.UTF_8))) {
                header = ReaderUtil.readLine(reader);
                if (header == null) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_sereq_request_file = "{labels.sereq_request_file}";
    
        /** The key of the message: Request File */
        public static final String LABELS_REQUEST_FILE = "{labels.requestFile}";
    
        /** The key of the message: Send */
        public static final String LABELS_sereq_button_upload = "{labels.sereq_button_upload}";
    
        /** The key of the message: Not found */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 156.4K bytes
    - Viewed (0)
Back to top