Package com.tridion.broker.querying.criteria.taxonomy

Examples of com.tridion.broker.querying.criteria.taxonomy.TaxonomyKeywordDescriptionCriteria


    String keywordDescription = fieldOperatorNodes.get(2).getValue();
    FieldOperator operator = fieldOperatorNodes.get(2).getFieldOperator();
    boolean includeKeywordBranches = Boolean.parseBoolean(fieldOperatorNodes.get(3).getValue());

    if (operator == FieldOperator.EQUAL) {
      criteria = new TaxonomyKeywordDescriptionCriteria(publicationId, taxonomyId, keywordDescription,
          includeKeywordBranches);
    } else {
      criteria = new TaxonomyKeywordDescriptionCriteria(publicationId, taxonomyId, keywordDescription,
          includeKeywordBranches, operator);
    }
  }
View Full Code Here

TOP

Related Classes of com.tridion.broker.querying.criteria.taxonomy.TaxonomyKeywordDescriptionCriteria

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.