Package com.ikanow.infinit.e.data_model.store.config.source.SourcePojo

Examples of com.ikanow.infinit.e.data_model.store.config.source.SourcePojo.SourceSearchIndexFilter


     
    }//TESTED

    if (null != unindexedFieldList) {
      if (null == source.getSearchIndexFilter()) {
        source.setSearchIndexFilter(new SourceSearchIndexFilter());
      }
      if (null == source.getSearchIndexFilter().metadataFieldList) {
        source.getSearchIndexFilter().metadataFieldList = "-" +  unindexedFieldList;
      }//TESTED (storageSettings_advanced.json)
      else if (source.getSearchIndexFilter().metadataFieldList.startsWith("-")) { // add our list to the -ve selections
View Full Code Here

TOP

Related Classes of com.ikanow.infinit.e.data_model.store.config.source.SourcePojo.SourceSearchIndexFilter

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.