Skip navigation links

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.management.utils
Interface ListerMBean

All Superinterfaces:
DescriptorBean, SettableBean, StandardInterface
All Known Subinterfaces:
GroupEditorMBean, GroupMemberListerMBean, GroupReaderMBean, GroupUserListerMBean, MemberGroupListerMBean, NameListerMBean, PKICredentialMapEditorMBean, PKICredentialMapExtendedEditorMBean, PKICredentialMapExtendedReaderMBean, PKICredentialMapReaderMBean, PolicyListerMBean, PolicyStoreMBean, PropertiesListerMBean, RoleListerMBean, UserEditorMBean, UserPasswordCredentialMapEditorMBean, UserPasswordCredentialMapExtendedEditorMBean, UserPasswordCredentialMapExtendedReaderMBean, UserPasswordCredentialMapExtendedV2ReaderMBean, UserPasswordCredentialMapReaderMBean, UserReaderMBean

public interface ListerMBean
extends StandardInterface, DescriptorBean

The ListerMBean interface provides a general mechanism for returning lists.

Derived MBeans extend this interface to add methods that access the data of the current object in the list. This is different from the iterator model (where the next method returns the next object in the list) because creating MBeans for each object returned in a list (for example, one MBean per user) is too expensive. In addition, it is not appropriate to return non-MBean or non-primitive types from an MBean.

The general iteration pattern is as follows:

FooListerMBean fooLister = ...;
String cursor = lister.listFoo(...);
try {
while (fooLister.haveCurrent(cursor)) {
Foo currentVal = fooLister.getCurrentFoo(cursor);
fooLister.advance(cursor);
}
} finally {
fooLister.close(cursor);


Method Summary
abstract  void advance(String cursor)
          Advances the list to the next element in the list.
abstract  void close(String cursor)
          Indicates that the caller is finished using the list, and that the resources held on behalf of the list may be released.
abstract  boolean haveCurrent(String cursor)
          Returns true if there are more objects in the list, and false otherwise.

 

Methods inherited from interface weblogic.management.commo.StandardInterface
getName

 

Methods inherited from interface weblogic.descriptor.DescriptorBean
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener

 

Method Detail

haveCurrent

boolean haveCurrent(String cursor)
                    throws InvalidCursorException

Returns true if there are more objects in the list, and false otherwise.

Parameters:
cursor - - The cursor returned from a previous list method.
Throws:
InvalidCursorException

advance

void advance(String cursor)
             throws InvalidCursorException

Advances the list to the next element in the list.

Parameters:
cursor - - The cursor returned from a previous list method.
Throws:
InvalidCursorException

close

void close(String cursor)
           throws InvalidCursorException

Indicates that the caller is finished using the list, and that the resources held on behalf of the list may be released. If the caller traverses through all the elements in the list, the caller need not call this method. In other words, it is used to let the caller close the list without reading each element that is returned.

Parameters:
cursor - - The cursor returned from a previous list method.
Throws:
InvalidCursorException

Skip navigation links

Copyright 1996, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09