BEA Systems, Inc.

WebLogic Server 6.1 API Reference

weblogic.security.acl
Class DefaultGroupImpl

java.lang.Object
  |
  +--weblogic.security.acl.DefaultGroupImpl
Direct Known Subclasses:
FlatGroup

public abstract class DefaultGroupImpl
extends java.lang.Object
implements java.security.acl.Group

Author:
Copyright © 2001 BEA Systems, Inc. All Rights Reserved.

Constructor Summary
DefaultGroupImpl(java.lang.String name)
           
 
Method Summary
 boolean addMember(java.security.Principal user)
          Adds the specified member to the group.
 java.lang.String getName()
          Returns the name of this principal.
abstract  boolean isMember(java.security.Principal member)
          Returns true if the passed principal is a member of the group.
abstract  java.util.Enumeration members()
          Returns an enumeration of the members in the group.
 boolean removeMember(java.security.Principal user)
          Removes the specified member from the group.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DefaultGroupImpl

public DefaultGroupImpl(java.lang.String name)
Method Detail

getName

public java.lang.String getName()
Returns the name of this principal.

Returns:
the name of this principal.

addMember

public boolean addMember(java.security.Principal user)
Adds the specified member to the group.
Specified by:
addMember in interface java.security.acl.Group

Parameters:
user - the principal to add to this group.
Returns:
true if the member was successfully added, false if the principal was already a member.

removeMember

public boolean removeMember(java.security.Principal user)
Removes the specified member from the group.
Specified by:
removeMember in interface java.security.acl.Group

Parameters:
user - the principal to remove from this group.
Returns:
true if the principal was removed, or false if the principal was not a member.

isMember

public abstract boolean isMember(java.security.Principal member)
Returns true if the passed principal is a member of the group. This method does a recursive search, so if a principal belongs to a group which is a member of this group, true is returned.
Specified by:
isMember in interface java.security.acl.Group

Parameters:
member - the principal whose membership is to be checked.
Returns:
true if the principal is a member of this group, false otherwise.

members

public abstract java.util.Enumeration members()
Returns an enumeration of the members in the group. The returned objects can be instances of either Principal or Group (which is a subclass of Principal).
Specified by:
members in interface java.security.acl.Group

Returns:
an enumeration of the group members.

toString

public java.lang.String toString()

Overrides:
toString in class java.lang.Object

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs61

WebLogic classes and methods that do not appear in this reference are not public and are not supported.