BEA WebLogic Server 9.1 Security Schema Reference

http://www.bea.com/ns/weblogic/90/security
complexType listerType

{http://www.w3.org/2001/XMLSchema}anyType
    {http://www.bea.com/ns/weblogic/90/security}listerType

Model
<.../>
Prohibited substitutions (block)
none (extensions and restrictions are allowed)
Usage
Derived types: name-listerType, pki-credential-map-readerType, properties-listerType, user-password-credential-map-readerType
Components using this type: none
Documentation

Provides a method for listing the groups that contain a member. An Authentication provider MBean can optionally implement this MBean. The WebLogic Server Administration Console detects when an Authentication provider implements this MBean and automatically provides a tab for using these methods.

MBean: MemberGroupListerMBean

Provides a set of methods for reading data about groups. An Authentication provider MBean can optionally implement this MBean. The WebLogic Server Administration Console detects when an Authentication provider implements this MBean and automatically provides a tab for using these methods.

MBean: GroupReaderMBean

The NameListerMBean interface defines a method used to return lists of names.

MBean: NameListerMBean

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);

MBean: ListerMBean

BEA WebLogic Server 9.1 Security Schema Reference

Version: 9.1