Selector selector = new Selector();
selector.setFields(new String[] {"Id", "AdGroupId", "Status"});
selector.setOrdering(new OrderBy[] {new OrderBy("Id", SortOrder.ASCENDING)});
// Create predicates.
Predicate statusPredicate =
new Predicate("Status", PredicateOperator.IN, new String[] {"ACTIVE"});
Predicate adGroupIdPredicate =
new Predicate("AdGroupId", PredicateOperator.IN, new String[] {adGroupId.toString()});
selector.setPredicates(new Predicate[] {statusPredicate, adGroupIdPredicate});
// Get all active ad group criteria.
AdGroupCriterionPage page = adGroupCriterionService.get(selector);