com.bea.ales.management
Class ActionGroupQueryResult

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

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

This class represents the result of executing a query on action groups. It provides methods to iterate over the result and find an action group from the result.


Method Summary
 com.bea.ales.management.ActionGroup find(java.lang.String name)
          Find an action group that has the given name from the result.
 com.bea.ales.management.ActionGroup next()
          Get the next action group in the result.
 com.bea.ales.management.ActionGroup previous()
          Get the previous action group in the result.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

next

public com.bea.ales.management.ActionGroup next()
                 throws ManagementException
Get the next action group in the result.

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

previous

public com.bea.ales.management.ActionGroup previous()
                     throws ManagementException
Get the previous action group in the result.

Returns:
The previous action group, or null if there no previous action group.
Throws:
ManagementException - if the operation fails.

find

public com.bea.ales.management.ActionGroup find(java.lang.String name)
                 throws ManagementException
Find an action group that has the given name from the result.

Parameters:
name - name of the group.
Returns:
the action group whose name equals to name, or null if no such group.
Throws:
ManagementException - if the operation fails.


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