Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.3)

Part Number E13941-03

weblogic.security.acl
Class Everyone

java.lang.Object
  extended by User
      extended by weblogic.security.acl.Everyone
All Implemented Interfaces:
Group, Principal

Deprecated. Deprecated in WebLogic Server 7.0. Replaced by the rules-based Authorization Provider in the Pluggable Security Infrastructure.

public final class Everyone
extends User
implements Group

Everyone is an implementation of Group, which is includes everyone.


Constructor Summary
Everyone(ListableRealm r)
          Deprecated. Constructs the special group Everyone for the specified ListableRealm.
 
Method Summary
 boolean addMember(Principal unnecessary)
          Deprecated. Adds a member to the group.
 boolean isMember(Principal doesntMatter)
          Deprecated. Determines whether the specified Principal is a member of the group.
 Enumeration members()
          Deprecated. Returns an Enumeration of the members of a group.
 boolean removeMember(Principal impossible)
          Deprecated. Deletes a member from the group.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.security.Principal
equals, getName, hashCode, toString
 

Constructor Detail

Everyone

public Everyone(ListableRealm r)
Deprecated. 
Constructs the special group Everyone for the specified ListableRealm.

Parameters:
r - Realm within which to create the group
Method Detail

isMember

public boolean isMember(Principal doesntMatter)
Deprecated. 
Determines whether the specified Principal is a member of the group. For the implementation of Everyone, there is by default no one outside the group, so the method must always return true.

Specified by:
isMember in interface Group
Parameters:
doesntMatter - Principal
Returns:
true

addMember

public boolean addMember(Principal unnecessary)
Deprecated. 
Adds a member to the group. For the implementation of Everyone, there is by default no one outside the group, so the method must always return true.

Specified by:
addMember in interface Group
Parameters:
unnecessary - Principal
Returns:
true

removeMember

public boolean removeMember(Principal impossible)
Deprecated. 
Deletes a member from the group. For the implementation of Everyone, there is by default no one outside the group, so the method must always throw an error.

Specified by:
removeMember in interface Group
Parameters:
impossible - Principal
Returns:
None
Throws:
IllegalArgumentException - if an attempt is made to remove any Principal from the group Everyone

members

public Enumeration members()
Deprecated. 
Returns an Enumeration of the members of a group. The returned objects can be instances of either Principal or Group (a subclass of Principal).

Specified by:
members in interface Group
Returns:
Users in a realm

Copyright 1996, 2010, 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
Oracle WebLogic Server 10.3.3 API Reference
11g Release 1 (10.3.3)

Part Number E13941-03