Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for geoForm (0.14 sec)

  1. src/main/java/org/codelibs/fess/Constants.java

        public static final String GEO_QUERY = "fess.GeoQuery";
    
        public static final String FACET_FORM = "fess.FacetForm";
    
        public static final String GEO_FORM = "fess.GeoForm";
    
        public static final String LABEL_VALUE_MAP = "fess.LabelValueMap";
    
        public static final String OPTION_QUERY_Q = "q";
    
        public static final String OPTION_QUERY_CQ = "cq";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            return createQuery(Constants.GEO_QUERY, GEO_PREFIX);
        }
    
        public static String facetForm() {
            return createForm(Constants.FACET_FORM, FACET_PREFIX);
        }
    
        public static String geoForm() {
            return createForm(Constants.GEO_FORM, GEO_PREFIX);
        }
    
        public static List<FacetQueryView> facetQueryViewList() {
            final ViewHelper viewHelper = ComponentUtil.getViewHelper();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

     */
    package org.codelibs.fess.app.web.go;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class GoForm {
        @Required
        @Size(max = 100)
        public String docId;
    
        @Size(max = 10000)
        @Required
        public String rt;
    
        public String hash;
    
        @Required
        public String queryId;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

        //                                                                      Search Execute
        //                                                                      ==============
        @Execute
        public ActionResponse index(final GoForm form) throws IOException {
            validate(form, messages -> {}, () -> asHtml(virtualHost(path_Error_ErrorJsp)));
            if (isLoginRequired()) {
                return redirectToLogin();
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
Back to top