cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Applying filter term rule to aggregation using IDM connector

Applying filter term rule to aggregation using IDM connector

You can setup the IDM Connector to apply a filter during aggregation by using the FilterTerm Rule.

Using the FilterTerm Rule should return a list of SPML's FilterTerm objects. Here is an example of applying this rule:

<Source>
<![CDATA[

      import org.openspml.message.FilterTerm;

      List filterTermList = new ArrayList();

      // Build your term(s)
      FilterTerm term = new FilterTerm(FilterTerm.OP_EQUAL);
      term.setName("hasCapabilities");
      term.setValue("true");

      filterTermList.add(term);

      return filterTermList;
]]>
</Source>

Labels (3)
Version history
Revision #:
5 of 5
Last update:
‎Jun 23, 2023 01:55 PM
Updated by:
 
Contributors