Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ListForm (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/ListForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.dict;
    
    /**
     * The list form for Dictionary.
     *
     */
    public class ListForm {
        /**
         * Default constructor.
         */
        public ListForm() {
            // do nothing
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 834 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * The list form for Search List.
     */
    public class ListForm extends SearchRequestParams {
    
        /**
         * Default constructor.
         */
        public ListForm() {
            super();
        }
    
        /** The search query string. */
        @Size(max = 1000)
        public String q;
    
        /** The sort field and direction. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

            saveToken();
            return doMove(form, 0);
        }
    
        /**
         * Handles pagination movement logic.
         *
         * @param form the list form containing current state
         * @param move the direction to move (-1 for previous, 0 for specific page, 1 for next)
         * @return HTML response with moved page results
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.1K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ListBody.java

     */
    package org.codelibs.fess.app.web.api.admin.dict;
    
    import java.util.Date;
    
    import org.codelibs.fess.app.web.admin.dict.ListForm;
    
    /**
     * The request body for listing dictionaries.
     */
    public class ListBody extends ListForm {
        /**
         * Default constructor.
         */
        public ListBody() {
            super();
        }
    
        /** The ID of the dictionary. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/SearchBody.java

     */
    package org.codelibs.fess.app.web.api.admin.searchlist;
    
    import org.codelibs.fess.app.web.admin.searchlist.ListForm;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Search request body for search list administration API.
     */
    public class SearchBody extends ListForm {
    
        /**
         * Default constructor.
         */
        public SearchBody() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top