Package com.esri.gpt.catalog.search

Examples of com.esri.gpt.catalog.search.SearchFilterContentTypes


    // content type filter
    String sContentType = Val.chkStr(parser.getRequestParameter("contentType"));
    try {
      if (sContentType.length() > 0) {
        SearchFilterContentTypes fContentTypes = new SearchFilterContentTypes();
        fContentTypes.setSelectedContentType(
                SearchEngineCSW.AimsContentTypes.valueOf(sContentType).name());
        criteria.setSearchFilterContentTypes(fContentTypes);
      }
    } catch (IllegalArgumentException ex) {
      // if invalid content type simply do not create filter
View Full Code Here

TOP

Related Classes of com.esri.gpt.catalog.search.SearchFilterContentTypes

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.