com.ibm.wbiserver.brules.mgmt.query
Interface PropertyIsDefinedQueryNode
All Superinterfaces:
QueryNode, java.io.Serializable
- public interface PropertyIsDefinedQueryNode
- extends QueryNode, java.io.Serializable
// Find business rule groups that have property "Department" defined to be some // value. PropertyIsDefinedQueryNode node = QueryNodeFactory.createPropertyIsDefinedQueryNode("Department");
A PropertyIsDefinedQueryNode
can be used by itself to form a query, if the query
is using a single property, or it may be combined with other QueryNode
objects
using the logical operator nodes AndNode
, OrNode
, and
NotNode
to form more complicated queries.
Note that the property name specified for the PropertyIsDefinedQueryNode
cannot make use of any wildcard characters such as '%' or '_'. Only an exact match on the
property name is allowed.
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getPropertyName()
Get the name of the property that is to be queried by this node.
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also:
Method Detail
getPropertyName
- java.lang.String getPropertyName( )
Get the name of the property that is to be queried by this node.
Returns:
The name of the property that is to be queried by this node.