Class LinkPermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
java.nio.file.LinkPermission
- All Implemented Interfaces:
- Serializable,- Guard
The 
Permission class for link creation operations.- API Note:
- This permission cannot be used for controlling access to resources as the Security Manager is no longer supported.
- Since:
- 1.7
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionLinkPermission(String name) Constructs aLinkPermissionwith the specified name.LinkPermission(String name, String actions) Constructs aLinkPermissionwith the specified name.
- 
Method SummaryMethods declared in class java.security.BasicPermissionequals, getActions, hashCode, implies, newPermissionCollectionMethods declared in class java.security.PermissioncheckGuard, getName, toString
- 
Constructor Details- 
LinkPermissionConstructs aLinkPermissionwith the specified name.- Parameters:
- name- the name of the permission. It must be "hard" or "symbolic".
- Throws:
- IllegalArgumentException- if name is empty or invalid
 
- 
LinkPermissionConstructs aLinkPermissionwith the specified name.- Parameters:
- name- the name of the permission; must be "hard" or "symbolic".
- actions- the actions for the permission; must be the empty string or- null
- Throws:
- IllegalArgumentException- if name is empty or invalid, or actions is a non-empty string
 
 
-