java.lang.Object
java.security.Permission
java.security.BasicPermission
com.sun.security.jgss.InquireSecContextPermission
- All Implemented Interfaces:
Serializable
,Guard
public final class InquireSecContextPermission extends BasicPermission
This class is used to protect various attributes of an established
GSS security context that can be accessed using the
ExtendedGSSContext.inquireSecContext(com.sun.security.jgss.InquireType)
method.
The target name is the InquireType
allowed.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description InquireSecContextPermission(String name)
Constructs a newInquireSecContextPermission
object with the specified name. -
Method Summary
Methods declared in class java.security.BasicPermission
equals, getActions, hashCode, implies, newPermissionCollection
-
Constructor Details
-
InquireSecContextPermission
Constructs a newInquireSecContextPermission
object with the specified name. The name is the symbolic name of theInquireType
allowed.- Parameters:
name
- theInquireType
allowed by this permission. "*" means allInquireType
s are allowed.- Throws:
NullPointerException
- ifname
isnull
.IllegalArgumentException
- ifname
is empty.
-