- java.lang.Object
-
- java.security.Permission
-
- java.security.BasicPermission
-
- java.nio.file.LinkPermission
-
- All Implemented Interfaces:
- Serializable, Guard
public final class LinkPermission extends BasicPermission
ThePermission
class for link creation operations.The following table provides a summary description of what the permission allows, and discusses the risks of granting code the permission.
Permission Target Name What the Permission Allows Risks of Allowing this Permission hard Ability to add an existing file to a directory. This is sometimes known as creating a link, or hard link. Extreme care should be taken when granting this permission. It allows linking to any file or directory in the file system thus allowing the attacker access to all files. symbolic Ability to create symbolic links. Extreme care should be taken when granting this permission. It allows linking to any file or directory in the file system thus allowing the attacker to access to all files.
-
-
Constructor Summary
Constructors Constructor and Description LinkPermission(String name)
Constructs aLinkPermission
with the specified name.LinkPermission(String name, String actions)
Constructs aLinkPermission
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 Detail
-
LinkPermission
public LinkPermission(String name)
Constructs aLinkPermission
with the specified name.- Parameters:
name
- the name of the permission. It must be "hard" or "symbolic".- Throws:
IllegalArgumentException
- if name is empty or invalid
-
LinkPermission
public LinkPermission(String name, String actions)
Constructs aLinkPermission
with 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 ornull
- Throws:
IllegalArgumentException
- if name is empty or invalid, or actions is a non-empty string
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/nio/file/LinkPermission.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.