< prev index next >

src/jdk.policytool/share/classes/sun/security/tools/policytool/PolicyTool.java

Print this page

        

@@ -69,10 +69,11 @@
  * is rarely used, and it provides little value over editing policy
  * files using a text editor.
  */
 
 @Deprecated(since="9", forRemoval=true)
+@SuppressWarnings("removal")
 public class PolicyTool {
 
     // for i18n
     static final java.util.ResourceBundle rb =
         java.util.ResourceBundle.getBundle(

@@ -877,11 +878,12 @@
  * meaning the code is not signed.
  *
  * The Permission contains the (Type, Name, Action) triplet.
  *
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class PolicyEntry {
 
     private CodeSource codesource;
     private PolicyTool tool;
     private PolicyParser.GrantEntry grantEntry;

@@ -1017,11 +1019,12 @@
 }
 
 /**
  * The main window for the PolicyTool
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class ToolWindow extends JFrame {
     // use serialVersionUID from JDK 1.2.2 for interoperability
     private static final long serialVersionUID = 5682568601210376777L;
 
     /* ESCAPE key */

@@ -1551,11 +1554,12 @@
 }
 
 /**
  * General dialog window
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class ToolDialog extends JDialog {
     // use serialVersionUID from JDK 1.2.2 for interoperability
     private static final long serialVersionUID = -372244357011301190L;
 
     /* ESCAPE key */

@@ -2915,11 +2919,12 @@
 }
 
 /**
  * Event handler for the PolicyTool window
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class ToolWindowListener implements WindowListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
 

@@ -2960,11 +2965,12 @@
 }
 
 /**
  * Event handler for the Policy List
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class PolicyListListener extends MouseAdapter implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
 

@@ -2990,11 +2996,12 @@
 }
 
 /**
  * Event handler for the File Menu
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class FileMenuListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
 

@@ -3089,11 +3096,12 @@
 }
 
 /**
  * Event handler for the main window buttons and Edit Menu
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class MainWindowListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
 

@@ -3165,11 +3173,12 @@
  * -- if edit is TRUE, then we are EDITing an existing PolicyEntry
  *    and we need to update both the policy and the GUI listing.
  *    if edit is FALSE, then we are ADDing a new PolicyEntry,
  *    so we only need to update the GUI listing.
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class AddEntryDoneButtonListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog td;

@@ -3232,11 +3241,12 @@
 }
 
 /**
  * Event handler for ChangeKeyStoreOKButton button
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class ChangeKeyStoreOKButtonListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog td;

@@ -3279,11 +3289,12 @@
 }
 
 /**
  * Event handler for AddPrinButton button
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class AddPrinButtonListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog td;

@@ -3305,11 +3316,12 @@
 }
 
 /**
  * Event handler for AddPermButton button
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class AddPermButtonListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog td;

@@ -3331,11 +3343,12 @@
 }
 
 /**
  * Event handler for AddPrinOKButton button
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class NewPolicyPrinOKButtonListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog listDialog;

@@ -3395,11 +3408,12 @@
 }
 
 /**
  * Event handler for AddPermOKButton button
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class NewPolicyPermOKButtonListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog listDialog;

@@ -3459,11 +3473,12 @@
 }
 
 /**
  * Event handler for RemovePrinButton button
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class RemovePrinButtonListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog td;

@@ -3495,11 +3510,12 @@
 }
 
 /**
  * Event handler for RemovePermButton button
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class RemovePermButtonListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog td;

@@ -3538,11 +3554,12 @@
  * adding a new PolicyEntry at this time, or editing an existing entry.
  * If the user is adding a new PolicyEntry, we ONLY update the
  * GUI listing.  If the user is editing an existing PolicyEntry, we
  * update both the GUI listing and the actual PolicyEntry.
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class EditPrinButtonListener extends MouseAdapter implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog td;

@@ -3585,11 +3602,12 @@
  * adding a new PolicyEntry at this time, or editing an existing entry.
  * If the user is adding a new PolicyEntry, we ONLY update the
  * GUI listing.  If the user is editing an existing PolicyEntry, we
  * update both the GUI listing and the actual PolicyEntry.
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class EditPermButtonListener extends MouseAdapter implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog td;

@@ -3626,11 +3644,12 @@
 }
 
 /**
  * Event handler for Principal Popup Menu
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class PrincipalTypeMenuListener implements ItemListener {
 
     private ToolDialog td;
 
     PrincipalTypeMenuListener(ToolDialog td) {

@@ -3678,11 +3697,12 @@
 }
 
 /**
  * Event handler for Permission Popup Menu
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class PermissionMenuListener implements ItemListener {
 
     private ToolDialog td;
 
     PermissionMenuListener(ToolDialog td) {

@@ -3753,11 +3773,12 @@
 }
 
 /**
  * Event handler for Permission Name Popup Menu
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class PermissionNameMenuListener implements ItemListener {
 
     private ToolDialog td;
 
     PermissionNameMenuListener(ToolDialog td) {

@@ -3907,11 +3928,12 @@
 }
 
 /**
  * Event handler for UserSaveYes button
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class UserSaveYesButtonListener implements ActionListener {
 
     private ToolDialog us;
     private PolicyTool tool;
     private ToolWindow tw;

@@ -3962,11 +3984,12 @@
 }
 
 /**
  * Event handler for UserSaveNoButton
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class UserSaveNoButtonListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog us;

@@ -4011,11 +4034,12 @@
 }
 
 /**
  * Event handler for ConfirmRemovePolicyEntryOKButtonListener
  */
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class ConfirmRemovePolicyEntryOKButtonListener implements ActionListener {
 
     private PolicyTool tool;
     private ToolWindow tw;
     private ToolDialog us;

@@ -4167,11 +4191,12 @@
                 },
             null);
     }
 }
 
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class AuthPerm extends Perm {
     AuthPerm() {
         super(javax.security.auth.AuthPermission.class,
             new String[]    {
                 "doAs",

@@ -4240,11 +4265,12 @@
                 "execute"
                 });
     }
 }
 
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class URLPerm extends Perm {
     URLPerm() {
         super(java.net.URLPermission.class,
             new String[]    {
                 "<"+ PolicyTool.getMessage("url") + ">",

@@ -4405,11 +4431,12 @@
                 },
             null);
     }
 }
 
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class RuntimePerm extends Perm {
     RuntimePerm() {
         super(java.lang.RuntimePermission.class,
             new String[]    {
                 "createClassLoader",

@@ -4446,11 +4473,12 @@
                 },
             null);
     }
 }
 
-@SuppressWarnings("deprecation")
+@SuppressWarnings({"deprecation",
+                   "removal"}) // PolicyTool
 class SecurityPerm extends Perm {
     SecurityPerm() {
         super(java.security.SecurityPermission.class,
             new String[]    {
                 "createAccessControlContext",
< prev index next >