Package org.glassfish.corba
Class BridgePermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
org.glassfish.corba.BridgePermission
- All Implemented Interfaces:
Serializable
,Guard
Permission class used to protect access to the sun.corba.Bridge
object. The only name valid here is "getBridge". The
BridgePermission("getBridge") permission must be held by the
caller of sun.corba.Bridge.get().
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBridgePermission
(String name) Creates a new BridgePermission with the specified name.BridgePermission
(String name, String actions) Creates a new BridgePermission object with the specified name. -
Method Summary
Methods inherited from class java.security.BasicPermission
equals, getActions, hashCode, implies, newPermissionCollection
Methods inherited from class java.security.Permission
checkGuard, getName, toString
-
Constructor Details
-
BridgePermission
Creates a new BridgePermission with the specified name. The name is the symbolic name of the BridgePermission. The only valid name here is "getBridge".- Parameters:
name
- the name of the BridgePermission.
-
BridgePermission
Creates a new BridgePermission object with the specified name. The name is the symbolic name of the BridgePermission, and the actions String is currently unused and should be null. The only valid name here is "getBridge".- Parameters:
name
- the name of the BridgePermission.actions
- should be null.
-