© 2002 BEA Systems, Inc.


com.bea.p13n.rules.advislets
Class RuleResultClassFilter

java.lang.Object
  |
  +--com.bea.p13n.rules.advislets.RuleResultClassFilter
Direct Known Subclasses:
ActionDefResultObjectFilter, ClassificationResultObjectFilter

public class RuleResultClassFilter
extends java.lang.Object
implements ObjectFilter, java.io.Serializable

A RuleResultClassFilter can be used to filter rule Result objects (the results of firing rules). The rule Result object contains an embedded object that is the created by the rule action. This filter checks the class type of the embedded object and, if it matches the class type of this filter, passes the embedded object through the filter .

Additionally, a rule name can be associated with this filter. If the rule name is non-null the eligible rule Result objects are also filtered by rule name.

The functionality above allows this filter to select the objects that were created by the rules engine that are of a given class type and optinally were created by a rule with a given name.

See Also:
Serialized Form

Constructor Summary
RuleResultClassFilter(java.lang.String ruleName, java.lang.Class targetClass)
          Constructs a RuleResultClassFilter.
RuleResultClassFilter(java.lang.String ruleName, java.lang.Class[] targetClassArray)
          Constructs a RuleResultClassFilter.
 
Method Summary
 java.lang.Object filter(java.lang.Object obj)
          Performs the filtering of objects created by the action of rule firing.
 void reset()
          This is a stateless filter and does not require reset be called.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RuleResultClassFilter

public RuleResultClassFilter(java.lang.String ruleName,
                             java.lang.Class targetClass)
Constructs a RuleResultClassFilter.

Parameters:
ruleName - the optional rule name to filter on.
the - target class for the object embedded in the rule result.

RuleResultClassFilter

public RuleResultClassFilter(java.lang.String ruleName,
                             java.lang.Class[] targetClassArray)
Constructs a RuleResultClassFilter.

Parameters:
ruleName - the optional rule name to filter on.
the - target classes for the object embedded in the rule result.
Method Detail

reset

public void reset()
This is a stateless filter and does not require reset be called.
Specified by:
reset in interface ObjectFilter


filter

public java.lang.Object filter(java.lang.Object obj)
Performs the filtering of objects created by the action of rule firing.
Specified by:
filter in interface ObjectFilter


© 2002 BEA Systems, Inc.

Copyright © 2002 BEA Systems, Inc. All Rights Reserved