Пример #1
0
 /**
  * Adds rule for determining which People Container the user is supposed to be in.
  *
  * @param filter filter representation of the rule. Accepts filter string with the following
  *     format:
  *     <p>
  *     <PRE>
  *
  * &ltfilter&gt ::= &ltand&gt | &ltitem&gt &ltand&gt ::= '(' '&'
  *            &ltitemlist&gt ')' &ltitemlist&gt ::= &ltitem&gt | &ltitem&gt
  *            &ltitemlist&gt &ltitem&gt ::= '(' &ltattr&gt '=' &ltvalue&gt
  *            ')'
  *
  * </PRE>
  *
  * @param guid guid of the People Container to which the rule is applied.
  * @exception UMSException Failure
  * @supported.api
  */
 public void addPeopleContainerRule(Guid guid, String filter) throws UMSException {
   PCMappingTable mt = PCMappingTable.getPCMappingTable(this);
   mt.addRule(guid, filter);
 }