Serializable, Guard@Deprecated(since="25", forRemoval=true) public final class UnresolvedPermission extends Permission implements Serializable
UnresolvedPermission class used to hold Permissions that were "unresolved" when the Policy was initialized. Installing a system-wide Policy object is no longer supported.| Constructor | Description |
|---|---|
UnresolvedPermission |
Deprecated, for removal: This API element is subject to removal in a future version. Creates a new UnresolvedPermission containing the permission information needed later to actually create a Permission of the specified class, when the permission is resolved. |
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
equals |
Deprecated, for removal: This API element is subject to removal in a future version. Checks two UnresolvedPermission objects for equality. |
String |
getActions() |
Deprecated, for removal: This API element is subject to removal in a future version. Returns the canonical string representation of the actions, which currently is the empty string "", since there are no actions for an UnresolvedPermission. |
String |
getUnresolvedActions() |
Deprecated, for removal: This API element is subject to removal in a future version. Get the actions for the underlying permission that has not been resolved. |
Certificate[] |
getUnresolvedCerts() |
Deprecated, for removal: This API element is subject to removal in a future version. Get the signer certificates (without any supporting chain) for the underlying permission that has not been resolved. |
String |
getUnresolvedName() |
Deprecated, for removal: This API element is subject to removal in a future version. Get the target name of the underlying permission that has not been resolved. |
String |
getUnresolvedType() |
Deprecated, for removal: This API element is subject to removal in a future version. Get the type (class name) of the underlying permission that has not been resolved. |
int |
hashCode() |
Deprecated, for removal: This API element is subject to removal in a future version. Returns the hash code value for this object. |
boolean |
implies |
Deprecated, for removal: This API element is subject to removal in a future version. This method always returns false for unresolved permissions. |
PermissionCollection |
newPermissionCollection() |
Deprecated, for removal: This API element is subject to removal in a future version. Returns a new PermissionCollection object for storing UnresolvedPermission objects. |
String |
toString() |
Deprecated, for removal: This API element is subject to removal in a future version. Returns a string describing this UnresolvedPermission. |
checkGuard, getName
public UnresolvedPermission(String type, String name, String actions, Certificate[] certs)
UnresolvedPermission containing the permission information needed later to actually create a Permission of the specified class, when the permission is resolved.type - the class name of the Permission class that will be created when this unresolved permission is resolved.name - the name of the permission.actions - the actions of the permission.certs - the certificates the permission's class was signed with. This is a list of certificate chains, where each chain is composed of a signer certificate and optionally its supporting certificate chain. Each chain is ordered bottom-to-top (i.e., with the signer certificate first and the (root) certificate authority last). The signer certificates are copied from the array. Subsequent changes to the array will not affect this UnresolvedPermission.public boolean implies(Permission p)
false for unresolved permissions. That is, an UnresolvedPermission is never considered to imply another permission.implies in class Permission
p - the permission to check against.false.public boolean equals(Object obj)
UnresolvedPermission objects for equality. Checks that obj is an UnresolvedPermission, and has the same type (class) name, permission name, actions, and certificates as this object. To determine certificate equality, this method only compares actual signer certificates. Supporting certificate chains are not taken into consideration by this method.
equals in class Permission
obj - the object we are testing for equality with this object.obj is an UnresolvedPermission, and has the same type (class) name, permission name, actions, and certificates as this object.public int hashCode()
hashCode in class Permission
public String getActions()
UnresolvedPermission. That is, the actions for the permission that will be created when this UnresolvedPermission is resolved may be non-null, but an UnresolvedPermission itself is never considered to have any actions.getActions in class Permission
public String getUnresolvedType()
public String getUnresolvedName()
null, if there is no target namepublic String getUnresolvedActions()
null if there are no actionspublic Certificate[] getUnresolvedCerts()
null, if there are no signer certificates. Returns a new array each time this method is called.public String toString()
UnresolvedPermission. The convention is to specify the class name, the permission name, and the actions, in the following format: '(unresolved "ClassName" "name" "actions")'.toString in class Permission
UnresolvedPermission.public PermissionCollection newPermissionCollection()
UnresolvedPermission objects.newPermissionCollection in class Permission
UnresolvedPermissions.
© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/security/UnresolvedPermission.html