Home »
Java programming language
Java SecurityManager checkPrintJobAccess() method with example
SecurityManager Class checkPrintJobAccess() method: Here, we are going to learn about the checkPrintJobAccess() method of SecurityManager Class with its syntax and example.
Submitted by Preeti Jain, on December 17, 2019
SecurityManager Class checkPrintJobAccess() method
- checkPrintJobAccess() method is available in java.lang package.
- checkPrintJobAccess() method invokes checkPermission with the RuntimePermission("queuePrintJob") permission to proceed with a print job request.
- checkPrintJobAccess() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- checkPrintJobAccess() method may throw an exception at the time of printing job request.
SecurityException – This exception may throw when the calling thread does not have the right to process print job requests.
Syntax:
public void checkPrintJobAccess();
Parameter(s):
- It does not accept any parameter.
Return value:
The return type of this method is void, it returns nothing.
Example:
// Java program to demonstrate the example
// of void checkPrintJobAccess()
// method of SecurityManager
public class CheckPrintJobAccess extends SecurityManager {
public static void main(String[] args) {
// By using setProperty() method is to set the policy property
// with security manager
System.setProperty("java.security.policy", "file:/C:/java.policy");
// Instantiating a SecurityManager object
SecurityManager smgr = new SecurityManager();
// By using setSecurityManager() method is to set the
// security manager
System.setSecurityManager(smgr);
// By using checkPrintJobAccess() method is to print
// job access
smgr.checkPrintJobAccess();
// Display the message
System.out.println("Not Restricted..");
}
}
Output
Exception in thread "main" java.security.AccessControlException: access denied ("java.lang.RuntimePermission" "queuePrintJob")
at java.base/java.security.AccessControlContext.checkPermission(AccessControlContext.java:472)
at java.base/java.security.AccessController.checkPermission(AccessController.java:897)
at java.base/java.lang.SecurityManager.checkPermission(SecurityManager.java:322)
at java.base/java.lang.SecurityManager.checkPrintJobAccess(SecurityManager.java:1089)
at CheckPrintJobAccess.main(CheckPrintJobAccess.java:21)