Class InquireSecContextPermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
com.sun.security.jgss.InquireSecContextPermission
- All Implemented Interfaces:
Serializable, Guard
@Deprecated(since="25",
forRemoval=true)
public final class InquireSecContextPermission
extends BasicPermission
Deprecated, for removal: This API element is subject to removal in a future version.
This permission cannot be used for controlling access to resources
as the Security Manager is no longer supported.
This class is for GSS security context permissions.
The target name is the InquireType
allowed.
- Since:
- 1.7
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Constructs a newInquireSecContextPermission
object with the specified name. -
Method Summary
Methods declared in class BasicPermission
equals, getActions, hashCode, implies, newPermissionCollection
Methods declared in class Permission
checkGuard, getName, toString
-
Constructor Details
-
InquireSecContextPermission
Deprecated, for removal: This API element is subject to removal in a future version.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.
-