Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ListForm (1.23 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/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)
  4. 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