Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getParamValueArray (0.18 sec)

  1. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        }
    
        public static String[] getParamValueArray(final HttpServletRequest request, final String param) {
            return simplifyArray(request.getParameterValues(param));
        }
    
        protected FacetInfo createFacetInfo(final HttpServletRequest request) {
            final String[] fields = getParamValueArray(request, "facet.field");
            final String[] queries = getParamValueArray(request, "facet.query");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            protected static RequestParameter parse(final HttpServletRequest request) {
                final String query = request.getParameter("q");
                final String[] tags = getParamValueArray(request, "label");
                final String[] fields = getParamValueArray(request, "field");
    
                final String numStr = request.getParameter("num");
                final int num;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top