com.bea.ales.management
Class MembershipRuleQueryResult

java.lang.Object
  |
  +--com.bea.ales.management.query.MultiQueryResultImpl
        |
        +--com.bea.ales.management.MembershipRuleQueryResult

public class MembershipRuleQueryResult
extends com.bea.ales.management.query.MultiQueryResultImpl

This class represents the result of excuting a query on membership rule. It provides the methods to iterater over the result and find a membership rule from the result.


Method Summary
 MembershipRule find(java.lang.String queryString)
          Find the membership rule with given query criteria.
 MembershipRule next()
          Get the next membership rule in the result.
 MembershipRule previous()
          Get the previous membership rule in the result.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

next

public MembershipRule next()
                    throws ManagementException
Get the next membership rule in the result.

Returns:
the next membership rule, or null if there is no next membership rule.
Throws:
ManagementException - if the operation fails.

previous

public MembershipRule previous()
                        throws ManagementException
Get the previous membership rule in the result.

Returns:
the previous membership rule in the result, or null if there is no previous one.
Throws:
ManagementException - if the operation fails.

find

public MembershipRule find(java.lang.String queryString)
                    throws ManagementException
Find the membership rule with given query criteria.

Parameters:
queryString - the query criteria to find the membership rule.
Returns:
the membership rule if it is found, or null if not found.
Throws:
ManagementException - if the operation fails.


Copyright © 2004-2008, Oracle and/or its affiliates. All rights reserved.