jdk/src/share/classes/sun/security/tools/policytool/PolicyTool.java
author weijun
Mon, 13 Sep 2010 09:32:36 +0800
changeset 6542 155856185c1b
parent 5627 e636ac7a63a4
child 7179 4afb81e50183
permissions -rw-r--r--
6845220: Need to update Policytool for Rowset 1.1 and JDBC 4.1 MR added permissions Reviewed-by: lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5627
lana
parents: 5506 5609
diff changeset
     2
 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3483
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3483
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3483
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3483
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3483
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
5609
cc144006eb2a 6951599: Rename package of security tools for modularization
mchung
parents: 3483
diff changeset
    26
package sun.security.tools.policytool;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.LinkedList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.ListIterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Vector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.Enumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.net.URL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.net.MalformedURLException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.lang.reflect.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.text.Collator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.text.MessageFormat;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import sun.security.util.PropertyExpander;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import sun.security.util.PropertyExpander.ExpandException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.awt.event.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.security.cert.Certificate;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.security.cert.CertificateException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import sun.security.provider.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import sun.security.util.PolicyUtil;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import javax.security.auth.x500.X500Principal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * PolicyTool may be used by users and administrators to configure the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * overall java security policy (currently stored in the policy file).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * Using PolicyTool administators may add and remove policies from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * the policy file. <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @see java.security.Policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
public class PolicyTool {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    // for i18n
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    static final java.util.ResourceBundle rb =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        java.util.ResourceBundle.getBundle("sun.security.util.Resources");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    static final Collator collator = Collator.getInstance();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        // this is for case insensitive string comparisons
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        collator.setStrength(Collator.PRIMARY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    // anyone can add warnings
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    Vector<String> warnings;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    boolean newWarning = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    // set to true if policy modified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    // this way upon exit we know if to ask the user to save changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    boolean modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    private static final boolean testing = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    private static final Class[] TWOPARAMS = { String.class, String.class };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    private static final Class[] ONEPARAMS = { String.class };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    private static final Class[] NOPARAMS  = {};
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * All of the policy entries are read in from the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * policy file and stored here.  Updates to the policy entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * using addEntry() and removeEntry() are made here.  To ultimately save
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * the policy entries back to the policy file, the SavePolicy button
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * must be clicked.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     **/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    private static String policyFileName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    private Vector<PolicyEntry> policyEntries = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    private PolicyParser parser = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    /* The public key alias information is stored here.  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    private KeyStore keyStore = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    private String keyStoreName = " ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    private String keyStoreType = " ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    private String keyStoreProvider = " ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    private String keyStorePwdURL = " ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    /* standard PKCS11 KeyStore type */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    private static final String P11KEYSTORE = "PKCS11";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /* reserved word for PKCS11 KeyStores */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    private static final String NONE = "NONE";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * default constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    private PolicyTool() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        policyEntries = new Vector<PolicyEntry>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        parser = new PolicyParser();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        warnings = new Vector<String>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * get the PolicyFileName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    String getPolicyFileName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        return policyFileName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * set the PolicyFileName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    void setPolicyFileName(String policyFileName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        this.policyFileName = policyFileName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    * clear keyStore info
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    void clearKeyStoreInfo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        this.keyStoreName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        this.keyStoreType = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        this.keyStoreProvider = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        this.keyStorePwdURL = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        this.keyStore = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * get the keyStore URL name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    String getKeyStoreName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        return keyStoreName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * get the keyStore Type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    String getKeyStoreType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        return keyStoreType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * get the keyStore Provider
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    String getKeyStoreProvider() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        return keyStoreProvider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * get the keyStore password URL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    String getKeyStorePwdURL() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        return keyStorePwdURL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * Open and read a policy file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    void openPolicy(String filename) throws FileNotFoundException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                                        PolicyParser.ParsingException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                                        KeyStoreException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                                        CertificateException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                                        InstantiationException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                                        MalformedURLException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                                        IOException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                                        NoSuchAlgorithmException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                                        IllegalAccessException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                                        NoSuchMethodException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                                        UnrecoverableKeyException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                                        NoSuchProviderException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                                        ClassNotFoundException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                                        PropertyExpander.ExpandException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                                        InvocationTargetException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        newWarning = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        // start fresh - blow away the current state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        policyEntries = new Vector<PolicyEntry>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        parser = new PolicyParser();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        warnings = new Vector<String>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        setPolicyFileName(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        clearKeyStoreInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        // see if user is opening a NEW policy file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        if (filename == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        // Read in the policy entries from the file and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        // populate the parser vector table.  The parser vector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        // table only holds the entries as strings, so it only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        // guarantees that the policies are syntactically
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        // correct.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        setPolicyFileName(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        parser.read(new FileReader(filename));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        // open the keystore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        openKeyStore(parser.getKeyStoreUrl(), parser.getKeyStoreType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                parser.getKeyStoreProvider(), parser.getStorePassURL());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        // Update the local vector with the same policy entries.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        // This guarantees that the policy entries are not only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
        // syntactically correct, but semantically valid as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        Enumeration<PolicyParser.GrantEntry> enum_ = parser.grantElements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        while (enum_.hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            PolicyParser.GrantEntry ge = enum_.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            // see if all the signers have public keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            if (ge.signedBy != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                String signers[] = parseSigners(ge.signedBy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                for (int i = 0; i < signers.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
                    PublicKey pubKey = getPublicKeyAlias(signers[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                    if (pubKey == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
                        newWarning = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                        MessageFormat form = new MessageFormat(rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
                            ("Warning: A public key for alias " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
                            "'signers[i]' does not exist.  " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                            "Make sure a KeyStore is properly configured."));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
                        Object[] source = {signers[i]};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
                        warnings.addElement(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            // check to see if the Principals are valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            ListIterator<PolicyParser.PrincipalEntry> prinList =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
                                                ge.principals.listIterator(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            while (prinList.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
                PolicyParser.PrincipalEntry pe = prinList.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                    verifyPrincipal(pe.getPrincipalClass(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                                pe.getPrincipalName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                } catch (ClassNotFoundException fnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                    newWarning = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                    MessageFormat form = new MessageFormat(rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                                ("Warning: Class not found: class"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                    Object[] source = {pe.getPrincipalClass()};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                    warnings.addElement(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            // check to see if the Permissions are valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            Enumeration<PolicyParser.PermissionEntry> perms =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
                                                ge.permissionElements();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            while (perms.hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
                PolicyParser.PermissionEntry pe = perms.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
                    verifyPermission(pe.permission, pe.name, pe.action);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
                } catch (ClassNotFoundException fnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
                    newWarning = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
                    MessageFormat form = new MessageFormat(rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
                                ("Warning: Class not found: class"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
                    Object[] source = {pe.permission};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
                    warnings.addElement(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
                } catch (InvocationTargetException ite) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
                    newWarning = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
                    MessageFormat form = new MessageFormat(rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
                        ("Warning: Invalid argument(s) for constructor: arg"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                    Object[] source = {pe.permission};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                    warnings.addElement(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
                // see if all the permission signers have public keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                if (pe.signedBy != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                    String signers[] = parseSigners(pe.signedBy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
                    for (int i = 0; i < signers.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
                        PublicKey pubKey = getPublicKeyAlias(signers[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                        if (pubKey == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                            newWarning = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                            MessageFormat form = new MessageFormat(rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                                ("Warning: A public key for alias " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                                "'signers[i]' does not exist.  " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                               "Make sure a KeyStore is properly configured."));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                            Object[] source = {signers[i]};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                            warnings.addElement(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            PolicyEntry pEntry = new PolicyEntry(this, ge);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
            policyEntries.addElement(pEntry);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        // just read in the policy -- nothing has been modified yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * Save a policy to a file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    void savePolicy(String filename)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    throws FileNotFoundException, IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        // save the policy entries to a file
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        parser.setKeyStoreUrl(keyStoreName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        parser.setKeyStoreType(keyStoreType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        parser.setKeyStoreProvider(keyStoreProvider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        parser.setStorePassURL(keyStorePwdURL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        parser.write(new FileWriter(filename));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * Open the KeyStore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    void openKeyStore(String name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
                String type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
                String provider,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
                String pwdURL) throws   KeyStoreException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
                                        NoSuchAlgorithmException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                                        UnrecoverableKeyException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
                                        IOException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
                                        CertificateException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
                                        NoSuchProviderException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                                        ExpandException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        if (name == null && type == null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
            provider == null && pwdURL == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
            // policy did not specify a keystore during open
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            // or use wants to reset keystore values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
            this.keyStoreName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
            this.keyStoreType = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            this.keyStoreProvider = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
            this.keyStorePwdURL = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
            // caller will set (tool.modified = true) if appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        URL policyURL = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        if (policyFileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
            File pfile = new File(policyFileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
            policyURL = new URL("file:" + pfile.getCanonicalPath());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        // although PolicyUtil.getKeyStore may properly handle
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        // defaults and property expansion, we do it here so that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        // if the call is successful, we can set the proper values
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
        // (PolicyUtil.getKeyStore does not return expanded values)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        if (name != null && name.length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
            name = PropertyExpander.expand(name).replace
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                                        (File.separatorChar, '/');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        if (type == null || type.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            type = KeyStore.getDefaultType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        if (pwdURL != null && pwdURL.length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
            pwdURL = PropertyExpander.expand(pwdURL).replace
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                                        (File.separatorChar, '/');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            this.keyStore = PolicyUtil.getKeyStore(policyURL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
                                                name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
                                                type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
                                                provider,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
                                                pwdURL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
                                                null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
            // copied from sun.security.pkcs11.SunPKCS11
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
            String MSG = "no password provided, and no callback handler " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
                        "available for retrieving password";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
            Throwable cause = ioe.getCause();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
            if (cause != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
                cause instanceof javax.security.auth.login.LoginException &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                MSG.equals(cause.getMessage())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
                // throw a more friendly exception message
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
                throw new IOException(MSG);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
                throw ioe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        this.keyStoreName = name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        this.keyStoreType = type;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        this.keyStoreProvider = provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        this.keyStorePwdURL = pwdURL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        // caller will set (tool.modified = true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * Add a Grant entry to the overall policy at the specified index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * A policy entry consists of a CodeSource.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    boolean addEntry(PolicyEntry pe, int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        if (index < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            // new entry -- just add it to the end
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            policyEntries.addElement(pe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
            parser.add(pe.getGrantEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            // existing entry -- replace old one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
            PolicyEntry origPe = policyEntries.elementAt(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
            parser.replace(origPe.getGrantEntry(), pe.getGrantEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
            policyEntries.setElementAt(pe, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * Add a Principal entry to an existing PolicyEntry at the specified index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * A Principal entry consists of a class, and name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * If the principal already exists, it is not added again.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    boolean addPrinEntry(PolicyEntry pe,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
                        PolicyParser.PrincipalEntry newPrin,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
                        int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        // first add the principal to the Policy Parser entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        PolicyParser.GrantEntry grantEntry = pe.getGrantEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        if (grantEntry.contains(newPrin) == true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
        LinkedList<PolicyParser.PrincipalEntry> prinList =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
                                                grantEntry.principals;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        if (index != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
            prinList.set(index, newPrin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
            prinList.add(newPrin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
     * Add a Permission entry to an existing PolicyEntry at the specified index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     * A Permission entry consists of a permission, name, and actions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
     * If the permission already exists, it is not added again.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    boolean addPermEntry(PolicyEntry pe,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
                        PolicyParser.PermissionEntry newPerm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                        int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        // first add the permission to the Policy Parser Vector
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        PolicyParser.GrantEntry grantEntry = pe.getGrantEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        if (grantEntry.contains(newPerm) == true)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        Vector<PolicyParser.PermissionEntry> permList =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                                                grantEntry.permissionEntries;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        if (index != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
            permList.setElementAt(newPerm, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
            permList.addElement(newPerm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * Remove a Permission entry from an existing PolicyEntry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
    boolean removePermEntry(PolicyEntry pe,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
                        PolicyParser.PermissionEntry perm) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        // remove the Permission from the GrantEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        PolicyParser.GrantEntry ppge = pe.getGrantEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        modified = ppge.remove(perm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        return modified;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * remove an entry from the overall policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    boolean removeEntry(PolicyEntry pe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        parser.remove(pe.getGrantEntry());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        return (policyEntries.removeElement(pe));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * retrieve all Policy Entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    PolicyEntry[] getEntry() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        if (policyEntries.size() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            PolicyEntry entries[] = new PolicyEntry[policyEntries.size()];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            for (int i = 0; i < policyEntries.size(); i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                entries[i] = policyEntries.elementAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            return entries;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * Retrieve the public key mapped to a particular name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * If the key has expired, a KeyException is thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
    PublicKey getPublicKeyAlias(String name) throws KeyStoreException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
        if (keyStore == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
        Certificate cert = keyStore.getCertificate(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        if (cert == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        PublicKey pubKey = cert.getPublicKey();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        return pubKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * Retrieve all the alias names stored in the certificate database
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    String[] getPublicKeyAlias() throws KeyStoreException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
        int numAliases = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        String aliases[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        if (keyStore == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        Enumeration<String> enum_ = keyStore.aliases();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        // first count the number of elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        while (enum_.hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
            enum_.nextElement();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
            numAliases++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        if (numAliases > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
            // now copy them into an array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
            aliases = new String[numAliases];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
            numAliases = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
            enum_ = keyStore.aliases();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
            while (enum_.hasMoreElements()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                aliases[numAliases] = new String(enum_.nextElement());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                numAliases++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        return aliases;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     * This method parses a single string of signers separated by commas
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * ("jordan, duke, pippen") into an array of individual strings.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    String[] parseSigners(String signedBy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        String signers[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        int numSigners = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        int signedByIndex = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        int commaIndex = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        int signerNum = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        // first pass thru "signedBy" counts the number of signers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        while (commaIndex >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
            commaIndex = signedBy.indexOf(',', signedByIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
            if (commaIndex >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
                numSigners++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
                signedByIndex = commaIndex + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        signers = new String[numSigners];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        // second pass thru "signedBy" transfers signers to array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
        commaIndex = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        signedByIndex = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        while (commaIndex >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            if ((commaIndex = signedBy.indexOf(',', signedByIndex)) >= 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
                // transfer signer and ignore trailing part of the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
                signers[signerNum] =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                        signedBy.substring(signedByIndex, commaIndex).trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
                signerNum++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
                signedByIndex = commaIndex + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                // we are at the end of the string -- transfer signer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                signers[signerNum] = signedBy.substring(signedByIndex).trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        return signers;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     * Check to see if the Principal contents are OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
    void verifyPrincipal(String type, String name)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        throws ClassNotFoundException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
               InstantiationException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        if (type.equals(PolicyParser.PrincipalEntry.WILDCARD_CLASS) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
            type.equals(PolicyParser.REPLACE_NAME)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        Class<?> PRIN = Class.forName("java.security.Principal");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        Class<?> pc = Class.forName(type, true,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
                Thread.currentThread().getContextClassLoader());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        if (!PRIN.isAssignableFrom(pc)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
            MessageFormat form = new MessageFormat(rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                        ("Illegal Principal Type: type"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            Object[] source = {type};
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
            throw new InstantiationException(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        if (ToolDialog.X500_PRIN_CLASS.equals(pc.getName())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
            // PolicyParser checks validity of X500Principal name
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            // - PolicyTool needs to as well so that it doesn't store
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
            //   an invalid name that can't be read in later
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
            //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
            // this can throw an IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
            X500Principal newP = new X500Principal(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * Check to see if the Permission contents are OK
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    void verifyPermission(String type,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                                    String name,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                                    String actions)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
        throws ClassNotFoundException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
               InstantiationException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
               IllegalAccessException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
               NoSuchMethodException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
               InvocationTargetException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        //XXX we might want to keep a hash of created factories...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        Class<?> pc = Class.forName(type, true,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
                Thread.currentThread().getContextClassLoader());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
        Constructor<?> c = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        Vector<String> objects = new Vector<String>(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        if (name != null) objects.add(name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        if (actions != null) objects.add(actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        switch (objects.size()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
        case 0:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                c = pc.getConstructor(NOPARAMS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
            } catch (NoSuchMethodException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
                // proceed to the one-param constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
                objects.add(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        case 1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
                c = pc.getConstructor(ONEPARAMS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
            } catch (NoSuchMethodException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
                // proceed to the two-param constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
                objects.add(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        case 2:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
            c = pc.getConstructor(TWOPARAMS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
        Object parameters[] = objects.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        Permission p = (Permission)c.newInstance(parameters);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * Parse command line arguments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    static void parseArgs(String args[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        /* parse flags */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        int n = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
        for (n=0; (n < args.length) && args[n].startsWith("-"); n++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
            String flags = args[n];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
            if (collator.compare(flags, "-file") == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
                if (++n == args.length) usage();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
                policyFileName = args[n];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
                MessageFormat form = new MessageFormat(rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
                                ("Illegal option: option"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
                Object[] source = { flags };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
                System.err.println(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
                usage();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    static void usage() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        System.out.println(rb.getString("Usage: policytool [options]"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        System.out.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
        System.out.println(rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
                ("  [-file <file>]    policy file location"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        System.out.println();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        System.exit(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * run the PolicyTool
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    public static void main(String args[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        parseArgs(args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
        ToolWindow tw = new ToolWindow(new PolicyTool());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        tw.displayToolWindow(args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
    // split instr to words according to capitalization,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
    // like, AWTControl -> A W T Control
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
    // this method is for easy pronounciation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    static String splitToWords(String instr) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        return instr.replaceAll("([A-Z])", " $1");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
 * Each entry in the policy configuration file is represented by a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
 * PolicyEntry object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
 * A PolicyEntry is a (CodeSource,Permission) pair.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
 * CodeSource contains the (URL, PublicKey) that together identify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
 * where the Java bytecodes come from and who (if anyone) signed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
 * them.  The URL could refer to localhost.  The URL could also be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
 * null, meaning that this policy entry is given to all comers, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
 * long as they match the signer field.  The signer could be null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
 * meaning the code is not signed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
 * The Permission contains the (Type, Name, Action) triplet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
class PolicyEntry {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    private CodeSource codesource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    private PolicyParser.GrantEntry grantEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
    private boolean testing = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * Create a PolicyEntry object from the information read in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     * from a policy file.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
    PolicyEntry(PolicyTool tool, PolicyParser.GrantEntry ge)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    throws MalformedURLException, NoSuchMethodException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
    ClassNotFoundException, InstantiationException, IllegalAccessException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    InvocationTargetException, CertificateException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
    IOException, NoSuchAlgorithmException, UnrecoverableKeyException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        URL location = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        // construct the CodeSource
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
        if (ge.codeBase != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
            location = new URL(ge.codeBase);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        this.codesource = new CodeSource(location,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
            (java.security.cert.Certificate[]) null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
        if (testing) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
            System.out.println("Adding Policy Entry:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
            System.out.println("    CodeBase = " + location);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
            System.out.println("    Signers = " + ge.signedBy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
            System.out.println("    with " + ge.principals.size() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
                    " Principals");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
        this.grantEntry = ge;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
     * get the codesource associated with this PolicyEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
    CodeSource getCodeSource() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        return codesource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * get the GrantEntry associated with this PolicyEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    PolicyParser.GrantEntry getGrantEntry() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
        return grantEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
     * convert the header portion, i.e. codebase, signer, principals, of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
     * this policy entry into a string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    String headerToString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        String pString = principalsToString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
        if (pString.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
            return codebaseToString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
            return codebaseToString() + ", " + pString;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
     * convert the Codebase/signer portion of this policy entry into a string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
    String codebaseToString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
        String stringEntry = new String();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        if (grantEntry.codeBase != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
            grantEntry.codeBase.equals("") == false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
            stringEntry = stringEntry.concat
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
                                ("CodeBase \"" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
                                grantEntry.codeBase +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
                                "\"");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        if (grantEntry.signedBy != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
            grantEntry.signedBy.equals("") == false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
            stringEntry = ((stringEntry.length() > 0) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
                stringEntry.concat(", SignedBy \"" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
                                grantEntry.signedBy +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
                                "\"") :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
                stringEntry.concat("SignedBy \"" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
                                grantEntry.signedBy +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
                                "\""));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
        if (stringEntry.length() == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
            return new String("CodeBase <ALL>");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
        return stringEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
     * convert the Principals portion of this policy entry into a string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
    String principalsToString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        String result = "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
        if ((grantEntry.principals != null) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
            (!grantEntry.principals.isEmpty())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
            StringBuffer buffer = new StringBuffer(200);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
            ListIterator<PolicyParser.PrincipalEntry> list =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                                grantEntry.principals.listIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
            while (list.hasNext()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                PolicyParser.PrincipalEntry pppe = list.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                buffer.append(" Principal " + pppe.getDisplayClass() + " " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                    pppe.getDisplayName(true));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                if (list.hasNext()) buffer.append(", ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
            result = buffer.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * convert this policy entry into a PolicyParser.PermissionEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
    PolicyParser.PermissionEntry toPermissionEntry(Permission perm) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        String actions = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
        // get the actions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
        if (perm.getActions() != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
            perm.getActions().trim() != "")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
                actions = perm.getActions();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
        PolicyParser.PermissionEntry pe = new PolicyParser.PermissionEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                        (perm.getClass().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
                        perm.getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                        actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
        return pe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
 * The main window for the PolicyTool
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
class ToolWindow extends Frame {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
    // use serialVersionUID from JDK 1.2.2 for interoperability
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
    private static final long serialVersionUID = 5682568601210376777L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
    /* external paddings */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
    public static final Insets TOP_PADDING = new Insets(25,0,0,0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
    public static final Insets BOTTOM_PADDING = new Insets(0,0,25,0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
    public static final Insets LITE_BOTTOM_PADDING = new Insets(0,0,10,0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
    public static final Insets LR_PADDING = new Insets(0,10,0,10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
    public static final Insets TOP_BOTTOM_PADDING = new Insets(15, 0, 15, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
    public static final Insets L_TOP_BOTTOM_PADDING = new Insets(5,10,15,0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
    public static final Insets LR_BOTTOM_PADDING = new Insets(0,10,5,10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
    public static final Insets L_BOTTOM_PADDING = new Insets(0,10,5,0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
    public static final Insets R_BOTTOM_PADDING = new Insets(0,0,5,10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
    /* buttons and menus */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
    public static final String NEW_POLICY_FILE          =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
                        PolicyTool.rb.getString("New");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
    public static final String OPEN_POLICY_FILE         =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
                        PolicyTool.rb.getString("Open");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
    public static final String SAVE_POLICY_FILE         =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
                        PolicyTool.rb.getString("Save");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
    public static final String SAVE_AS_POLICY_FILE      =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
                        PolicyTool.rb.getString("Save As");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
    public static final String VIEW_WARNINGS            =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
                        PolicyTool.rb.getString("View Warning Log");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
    public static final String QUIT                     =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
                        PolicyTool.rb.getString("Exit");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
    public static final String ADD_POLICY_ENTRY         =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
                        PolicyTool.rb.getString("Add Policy Entry");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
    public static final String EDIT_POLICY_ENTRY        =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
                        PolicyTool.rb.getString("Edit Policy Entry");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
    public static final String REMOVE_POLICY_ENTRY      =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
                        PolicyTool.rb.getString("Remove Policy Entry");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    public static final String EDIT_KEYSTORE            =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
                        PolicyTool.rb.getString("Edit");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
    public static final String ADD_PUBKEY_ALIAS         =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
                        PolicyTool.rb.getString("Add Public Key Alias");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
    public static final String REMOVE_PUBKEY_ALIAS      =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
                        PolicyTool.rb.getString("Remove Public Key Alias");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
    /* gridbag index for components in the main window (MW) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
    public static final int MW_FILENAME_LABEL           = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
    public static final int MW_FILENAME_TEXTFIELD       = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    public static final int MW_PANEL                    = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
    public static final int MW_ADD_BUTTON               = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
    public static final int MW_EDIT_BUTTON              = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
    public static final int MW_REMOVE_BUTTON            = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
    public static final int MW_POLICY_LIST              = 3; // follows MW_PANEL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
     * Constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
    ToolWindow(PolicyTool tool) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
     * Initialize the PolicyTool window with the necessary components
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
    private void initWindow() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
        // create the top menu bar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
        MenuBar menuBar = new MenuBar();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        // create a File menu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
        Menu menu = new Menu(PolicyTool.rb.getString("File"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
        menu.add(NEW_POLICY_FILE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
        menu.add(OPEN_POLICY_FILE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
        menu.add(SAVE_POLICY_FILE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        menu.add(SAVE_AS_POLICY_FILE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        menu.add(VIEW_WARNINGS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
        menu.add(QUIT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
        menu.addActionListener(new FileMenuListener(tool, this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
        menuBar.add(menu);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        setMenuBar(menuBar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
        // create a KeyStore menu
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        menu = new Menu(PolicyTool.rb.getString("KeyStore"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
        menu.add(EDIT_KEYSTORE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
        menu.addActionListener(new MainWindowListener(tool, this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        menuBar.add(menu);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        setMenuBar(menuBar);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
        // policy entry listing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        Label label = new Label(PolicyTool.rb.getString("Policy File:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
        addNewComponent(this, label, MW_FILENAME_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
                        0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
                        TOP_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
        TextField tf = new TextField(50);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
        tf.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
                PolicyTool.rb.getString("Policy File:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
        tf.setEditable(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
        addNewComponent(this, tf, MW_FILENAME_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
                        1, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
                        TOP_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
        // add ADD/REMOVE/EDIT buttons in a new panel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
        Panel panel = new Panel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
        panel.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
        Button button = new Button(ADD_POLICY_ENTRY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
        button.addActionListener(new MainWindowListener(tool, this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
        addNewComponent(panel, button, MW_ADD_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
                        0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
                        LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        button = new Button(EDIT_POLICY_ENTRY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
        button.addActionListener(new MainWindowListener(tool, this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        addNewComponent(panel, button, MW_EDIT_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
                        1, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
                        LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
        button = new Button(REMOVE_POLICY_ENTRY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
        button.addActionListener(new MainWindowListener(tool, this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
        addNewComponent(panel, button, MW_REMOVE_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
                        2, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
                        LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
        addNewComponent(this, panel, MW_PANEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
                        0, 2, 2, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
                        BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
        String policyFile = tool.getPolicyFileName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
        if (policyFile == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
            String userHome;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
            userHome = java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
                    new sun.security.action.GetPropertyAction("user.home"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
            policyFile = userHome + File.separatorChar + ".java.policy";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
            // open the policy file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
            tool.openPolicy(policyFile);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
            // display the policy entries via the policy list textarea
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
            List list = new List(40, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
            list.addActionListener(new PolicyListListener(tool, this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
            PolicyEntry entries[] = tool.getEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
            if (entries != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
                for (int i = 0; i < entries.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
                    list.add(entries[i].headerToString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
            TextField newFilename = (TextField)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
                                getComponent(MW_FILENAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
            newFilename.setText(policyFile);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
            initPolicyList(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
        } catch (FileNotFoundException fnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
            // add blank policy listing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            List list = new List(40, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
            list.addActionListener(new PolicyListListener(tool, this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
            initPolicyList(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
            tool.setPolicyFileName(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
            tool.modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
            setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
            // just add warning
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
            tool.warnings.addElement(fnfe.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
            // add blank policy listing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
            List list = new List(40, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
            list.addActionListener(new PolicyListListener(tool, this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
            initPolicyList(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
            tool.setPolicyFileName(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
            tool.modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
            setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
            // display the error
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
            MessageFormat form = new MessageFormat(PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
                ("Could not open policy file: policyFile: e.toString()"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
            Object[] source = {policyFile, e.toString()};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
            displayErrorDialog(null, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
     * Add a component to the PolicyTool window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
    void addNewComponent(Container container, Component component,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
        int index, int gridx, int gridy, int gridwidth, int gridheight,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
        double weightx, double weighty, int fill, Insets is) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
        // add the component at the specified gridbag index
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
        container.add(component, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
        // set the constraints
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
        GridBagLayout gbl = (GridBagLayout)container.getLayout();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
        GridBagConstraints gbc = new GridBagConstraints();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
        gbc.gridx = gridx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
        gbc.gridy = gridy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
        gbc.gridwidth = gridwidth;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
        gbc.gridheight = gridheight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
        gbc.weightx = weightx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
        gbc.weighty = weighty;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
        gbc.fill = fill;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
        if (is != null) gbc.insets = is;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
        gbl.setConstraints(component, gbc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
     * Add a component to the PolicyTool window without external padding
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
    void addNewComponent(Container container, Component component,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
        int index, int gridx, int gridy, int gridwidth, int gridheight,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
        double weightx, double weighty, int fill) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
        // delegate with "null" external padding
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
        addNewComponent(container, component, index, gridx, gridy,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
                        gridwidth, gridheight, weightx, weighty,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
                        fill, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
     * Init the policy_entry_list TEXTAREA component in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
     * PolicyTool window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
    void initPolicyList(List policyList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
        // add the policy list to the window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
        addNewComponent(this, policyList, MW_POLICY_LIST,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
                        0, 3, 2, 1, 1.0, 1.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     * Replace the policy_entry_list TEXTAREA component in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     * PolicyTool window with an updated one.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
    void replacePolicyList(List policyList) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
        // remove the original list of Policy Entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
        // and add the new list of entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
        List list = (List)getComponent(MW_POLICY_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
        list.removeAll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
        String newItems[] = policyList.getItems();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
        for (int i = 0; i < newItems.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
            list.add(newItems[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     * display the main PolicyTool window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
    void displayToolWindow(String args[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
        setTitle(PolicyTool.rb.getString("Policy Tool"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
        setResizable(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
        addWindowListener(new ToolWindowListener(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
        setBounds(135, 80, 500, 500);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
        setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
        initWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        // display it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
        setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
        if (tool.newWarning == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
            displayStatusDialog(this, PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
                ("Errors have occurred while opening the " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
                "policy configuration.  View the Warning Log " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
                "for more information."));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
     * displays a dialog box describing an error which occurred.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
    void displayErrorDialog(Window w, String error) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
        ToolDialog ed = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
                (PolicyTool.rb.getString("Error"), tool, this, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
        // find where the PolicyTool gui is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
        Point location = ((w == null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
                getLocationOnScreen() : w.getLocationOnScreen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
        ed.setBounds(location.x + 50, location.y + 50, 600, 100);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
        ed.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
        Label label = new Label(error);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
        addNewComponent(ed, label, 0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
                        0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
        Button okButton = new Button(PolicyTool.rb.getString("OK"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
        okButton.addActionListener(new ErrorOKButtonListener(ed));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
        addNewComponent(ed, okButton, 1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
                        0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
        ed.pack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
        ed.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
     * displays a dialog box describing an error which occurred.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
    void displayErrorDialog(Window w, Throwable t) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
        if (t instanceof NoDisplayException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
        displayErrorDialog(w, t.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
     * displays a dialog box describing the status of an event
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
    void displayStatusDialog(Window w, String status) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
        ToolDialog sd = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
                (PolicyTool.rb.getString("Status"), tool, this, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
        // find the location of the PolicyTool gui
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
        Point location = ((w == null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
                getLocationOnScreen() : w.getLocationOnScreen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
        sd.setBounds(location.x + 50, location.y + 50, 500, 100);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
        sd.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
        Label label = new Label(status);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
        addNewComponent(sd, label, 0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
                        0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
        Button okButton = new Button(PolicyTool.rb.getString("OK"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
        okButton.addActionListener(new StatusOKButtonListener(sd));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
        addNewComponent(sd, okButton, 1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
                        0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
        sd.pack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
        sd.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
     * display the warning log
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
    void displayWarningLog(Window w) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
        ToolDialog wd = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
                (PolicyTool.rb.getString("Warning"), tool, this, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
        // find the location of the PolicyTool gui
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
        Point location = ((w == null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
                getLocationOnScreen() : w.getLocationOnScreen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
        wd.setBounds(location.x + 50, location.y + 50, 500, 100);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
        wd.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
        TextArea ta = new TextArea();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
        ta.setEditable(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
        for (int i = 0; i < tool.warnings.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
            ta.append(tool.warnings.elementAt(i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
            ta.append(PolicyTool.rb.getString("\n"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
        addNewComponent(wd, ta, 0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
                        0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
                        BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
        ta.setFocusable(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
        Button okButton = new Button(PolicyTool.rb.getString("OK"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
        okButton.addActionListener(new CancelButtonListener(wd));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
        addNewComponent(wd, okButton, 1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
                        0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
                        LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
        wd.pack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
        wd.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
    char displayYesNoDialog(Window w, String title, String prompt, String yes, String no) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
        final ToolDialog tw = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
                (title, tool, this, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
        Point location = ((w == null) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
                getLocationOnScreen() : w.getLocationOnScreen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
        tw.setBounds(location.x + 75, location.y + 100, 400, 150);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
        tw.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
        TextArea ta = new TextArea(prompt, 10, 50, TextArea.SCROLLBARS_VERTICAL_ONLY);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
        ta.setEditable(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
        addNewComponent(tw, ta, 0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
                0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
        ta.setFocusable(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
        Panel panel = new Panel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
        panel.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
        // StringBuffer to store button press. Must be final.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
        final StringBuffer chooseResult = new StringBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
        Button button = new Button(yes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
        button.addActionListener(new ActionListener() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
            public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
                chooseResult.append('Y');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
                tw.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
                tw.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
        addNewComponent(panel, button, 0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
                           0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
                           LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
        button = new Button(no);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
        button.addActionListener(new ActionListener() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
            public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
                chooseResult.append('N');
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
                tw.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
                tw.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
        addNewComponent(panel, button, 1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
                           1, 0, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
                           LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
        addNewComponent(tw, panel, 1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
                0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
        tw.pack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
        tw.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
        if (chooseResult.length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
            return chooseResult.charAt(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
            // I did encounter this once, don't why.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
            return 'N';
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
 * General dialog window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
class ToolDialog extends Dialog {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
    // use serialVersionUID from JDK 1.2.2 for interoperability
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
    private static final long serialVersionUID = -372244357011301190L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
    /* necessary constants */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
    public static final int NOACTION            = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
    public static final int QUIT                = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
    public static final int NEW                 = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
    public static final int OPEN                = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
    public static final String ALL_PERM_CLASS   =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
                "java.security.AllPermission";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
    public static final String FILE_PERM_CLASS  =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
                "java.io.FilePermission";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
    public static final String X500_PRIN_CLASS         =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
                "javax.security.auth.x500.X500Principal";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
    /* popup menus */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
    public static final String PERM             =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
        PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
        ("Permission:                                                       ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
    public static final String PRIN_TYPE        =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
        PolicyTool.rb.getString("Principal Type:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
    public static final String PRIN_NAME        =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
        PolicyTool.rb.getString("Principal Name:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
    /* more popu menus */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
    public static final String PERM_NAME        =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
        PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
        ("Target Name:                                                    ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
    /* and more popup menus */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
    public static final String PERM_ACTIONS             =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
      PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
      ("Actions:                                                             ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
    /* gridbag index for display OverWriteFile (OW) components */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
    public static final int OW_LABEL                    = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
    public static final int OW_OK_BUTTON                = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
    public static final int OW_CANCEL_BUTTON            = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
    /* gridbag index for display PolicyEntry (PE) components */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
    public static final int PE_CODEBASE_LABEL           = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
    public static final int PE_CODEBASE_TEXTFIELD       = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
    public static final int PE_SIGNEDBY_LABEL           = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
    public static final int PE_SIGNEDBY_TEXTFIELD       = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
    public static final int PE_PANEL0                   = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
    public static final int PE_ADD_PRIN_BUTTON          = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
    public static final int PE_EDIT_PRIN_BUTTON         = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
    public static final int PE_REMOVE_PRIN_BUTTON       = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
    public static final int PE_PRIN_LABEL               = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
    public static final int PE_PRIN_LIST                = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
    public static final int PE_PANEL1                   = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
    public static final int PE_ADD_PERM_BUTTON          = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
    public static final int PE_EDIT_PERM_BUTTON         = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
    public static final int PE_REMOVE_PERM_BUTTON       = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
    public static final int PE_PERM_LIST                = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
    public static final int PE_PANEL2                   = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
    public static final int PE_CANCEL_BUTTON            = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
    public static final int PE_DONE_BUTTON              = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
    /* the gridbag index for components in the Principal Dialog (PRD) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
    public static final int PRD_DESC_LABEL              = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
    public static final int PRD_PRIN_CHOICE             = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
    public static final int PRD_PRIN_TEXTFIELD          = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
    public static final int PRD_NAME_LABEL              = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
    public static final int PRD_NAME_TEXTFIELD          = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
    public static final int PRD_CANCEL_BUTTON           = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
    public static final int PRD_OK_BUTTON               = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
    /* the gridbag index for components in the Permission Dialog (PD) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
    public static final int PD_DESC_LABEL               = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
    public static final int PD_PERM_CHOICE              = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
    public static final int PD_PERM_TEXTFIELD           = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
    public static final int PD_NAME_CHOICE              = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
    public static final int PD_NAME_TEXTFIELD           = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
    public static final int PD_ACTIONS_CHOICE           = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
    public static final int PD_ACTIONS_TEXTFIELD        = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
    public static final int PD_SIGNEDBY_LABEL           = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
    public static final int PD_SIGNEDBY_TEXTFIELD       = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
    public static final int PD_CANCEL_BUTTON            = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
    public static final int PD_OK_BUTTON                = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
    /* modes for KeyStore */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
    public static final int EDIT_KEYSTORE               = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
    /* the gridbag index for components in the Change KeyStore Dialog (KSD) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
    public static final int KSD_NAME_LABEL              = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
    public static final int KSD_NAME_TEXTFIELD          = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
    public static final int KSD_TYPE_LABEL              = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
    public static final int KSD_TYPE_TEXTFIELD          = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
    public static final int KSD_PROVIDER_LABEL          = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
    public static final int KSD_PROVIDER_TEXTFIELD      = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
    public static final int KSD_PWD_URL_LABEL           = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
    public static final int KSD_PWD_URL_TEXTFIELD       = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
    public static final int KSD_CANCEL_BUTTON           = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
    public static final int KSD_OK_BUTTON               = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
    /* the gridbag index for components in the User Save Changes Dialog (USC) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
    public static final int USC_LABEL                   = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
    public static final int USC_PANEL                   = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
    public static final int USC_YES_BUTTON              = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
    public static final int USC_NO_BUTTON               = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
    public static final int USC_CANCEL_BUTTON           = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
    /* gridbag index for the ConfirmRemovePolicyEntryDialog (CRPE) */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
    public static final int CRPE_LABEL1                 = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
    public static final int CRPE_LABEL2                 = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
    public static final int CRPE_PANEL                  = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
    public static final int CRPE_PANEL_OK               = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
    public static final int CRPE_PANEL_CANCEL           = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
    /* some private static finals */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
    private static final int PERMISSION                 = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
    private static final int PERMISSION_NAME            = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
    private static final int PERMISSION_ACTIONS         = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
    private static final int PERMISSION_SIGNEDBY        = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
    private static final int PRINCIPAL_TYPE             = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
    private static final int PRINCIPAL_NAME             = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
    public static java.util.ArrayList<Perm> PERM_ARRAY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
    public static java.util.ArrayList<Prin> PRIN_ARRAY;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
    PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
    ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
        // set up permission objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
        PERM_ARRAY = new java.util.ArrayList<Perm>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
        PERM_ARRAY.add(new AllPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
        PERM_ARRAY.add(new AudioPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
        PERM_ARRAY.add(new AuthPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
        PERM_ARRAY.add(new AWTPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
        PERM_ARRAY.add(new DelegationPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
        PERM_ARRAY.add(new FilePerm());
3482
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  1457
        PERM_ARRAY.add(new InqSecContextPerm());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
        PERM_ARRAY.add(new LogPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
        PERM_ARRAY.add(new MgmtPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
        PERM_ARRAY.add(new MBeanPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
        PERM_ARRAY.add(new MBeanSvrPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
        PERM_ARRAY.add(new MBeanTrustPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
        PERM_ARRAY.add(new NetPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
        PERM_ARRAY.add(new PrivCredPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
        PERM_ARRAY.add(new PropPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
        PERM_ARRAY.add(new ReflectPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
        PERM_ARRAY.add(new RuntimePerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
        PERM_ARRAY.add(new SecurityPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
        PERM_ARRAY.add(new SerialPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
        PERM_ARRAY.add(new ServicePerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
        PERM_ARRAY.add(new SocketPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
        PERM_ARRAY.add(new SQLPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
        PERM_ARRAY.add(new SSLPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
        PERM_ARRAY.add(new SubjDelegPerm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
        // set up principal objects
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
        PRIN_ARRAY = new java.util.ArrayList<Prin>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
        PRIN_ARRAY.add(new KrbPrin());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
        PRIN_ARRAY.add(new X500Prin());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
    ToolDialog(String title, PolicyTool tool, ToolWindow tw, boolean modal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
        super(tw, modal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
        setTitle(title);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
        addWindowListener(new ChildWindowListener(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
     * get the Perm instance based on either the (shortened) class name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
     * or the fully qualified class name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
    static Perm getPerm(String clazz, boolean fullClassName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
        for (int i = 0; i < PERM_ARRAY.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
            Perm next = PERM_ARRAY.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
            if (fullClassName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
                if (next.FULL_CLASS.equals(clazz)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
                    return next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
                if (next.CLASS.equals(clazz)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
                    return next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
     * get the Prin instance based on either the (shortened) class name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
     * or the fully qualified class name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
    static Prin getPrin(String clazz, boolean fullClassName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
        for (int i = 0; i < PRIN_ARRAY.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
            Prin next = PRIN_ARRAY.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
            if (fullClassName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
                if (next.FULL_CLASS.equals(clazz)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
                    return next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
                if (next.CLASS.equals(clazz)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
                    return next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
     * ask user if they want to overwrite an existing file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
    void displayOverWriteFileDialog(String filename, int nextEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
        // find where the PolicyTool gui is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
        Point location = tw.getLocationOnScreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
        setBounds(location.x + 75, location.y + 100, 400, 150);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
        setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
        // ask the user if they want to over write the existing file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
        MessageFormat form = new MessageFormat(PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
                ("OK to overwrite existing file filename?"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
        Object[] source = {filename};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
        Label label = new Label(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
        tw.addNewComponent(this, label, OW_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
                           0, 0, 2, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
                           tw.TOP_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
        // OK button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
        Button button = new Button(PolicyTool.rb.getString("OK"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
        button.addActionListener(new OverWriteFileOKButtonListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
                (tool, tw, this, filename, nextEvent));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
        tw.addNewComponent(this, button, OW_OK_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
                           0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
                           tw.TOP_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
        // Cancel button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
        // -- if the user hits cancel, do NOT go on to the next event
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
        button = new Button(PolicyTool.rb.getString("Cancel"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
        button.addActionListener(new CancelButtonListener(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
        tw.addNewComponent(this, button, OW_CANCEL_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
                           1, 1, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
                           tw.TOP_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
        setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
     * pop up a dialog so the user can enter info to add a new PolicyEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
     * - if edit is TRUE, then the user is editing an existing entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
     *   and we should display the original info as well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
     * - the other reason we need the 'edit' boolean is we need to know
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
     *   when we are adding a NEW policy entry.  in this case, we can
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
     *   not simply update the existing entry, because it doesn't exist.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
     *   we ONLY update the GUI listing/info, and then when the user
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
     *   finally clicks 'OK' or 'DONE', then we can collect that info
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
     *   and add it to the policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
    void displayPolicyEntryDialog(boolean edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
        int listIndex = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
        PolicyEntry entries[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
        TaggedList prinList = new TaggedList(3, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
        prinList.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
                PolicyTool.rb.getString("Principal List"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
        prinList.addActionListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
                (new EditPrinButtonListener(tool, tw, this, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
        TaggedList permList = new TaggedList(10, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
        permList.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
                PolicyTool.rb.getString("Permission List"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
        permList.addActionListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
                (new EditPermButtonListener(tool, tw, this, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
        // find where the PolicyTool gui is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
        Point location = tw.getLocationOnScreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
        setBounds(location.x + 75, location.y + 200, 650, 500);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
        setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
        setResizable(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
        if (edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
            // get the selected item
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
            entries = tool.getEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
            List policyList = (List)tw.getComponent(tw.MW_POLICY_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
            listIndex = policyList.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
            // get principal list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
            LinkedList principals =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
                entries[listIndex].getGrantEntry().principals;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
            for (int i = 0; i < principals.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
                String prinString = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
                PolicyParser.PrincipalEntry nextPrin =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
                        (PolicyParser.PrincipalEntry)principals.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
                prinList.addTaggedItem(PrincipalEntryToUserFriendlyString(nextPrin), nextPrin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
            // get permission list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
            Vector<PolicyParser.PermissionEntry> permissions =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
                entries[listIndex].getGrantEntry().permissionEntries;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
            for (int i = 0; i < permissions.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
                String permString = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
                PolicyParser.PermissionEntry nextPerm =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
                                                permissions.elementAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
                permList.addTaggedItem(ToolDialog.PermissionEntryToUserFriendlyString(nextPerm), nextPerm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
        // codebase label and textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
        Label label = new Label(PolicyTool.rb.getString("CodeBase:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
        tw.addNewComponent(this, label, PE_CODEBASE_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
                0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
        TextField tf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
        tf = (edit ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
                new TextField(entries[listIndex].getGrantEntry().codeBase, 60) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
                new TextField(60));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
        tf.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
                PolicyTool.rb.getString("Code Base"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
        tw.addNewComponent(this, tf, PE_CODEBASE_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
                1, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
        // signedby label and textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
        label = new Label(PolicyTool.rb.getString("SignedBy:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
        tw.addNewComponent(this, label, PE_SIGNEDBY_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
                           0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
        tf = (edit ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
                new TextField(entries[listIndex].getGrantEntry().signedBy, 60) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
                new TextField(60));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
        tf.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
                PolicyTool.rb.getString("Signed By:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
        tw.addNewComponent(this, tf, PE_SIGNEDBY_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
                           1, 1, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
        // panel for principal buttons
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
        Panel panel = new Panel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
        panel.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
        Button button = new Button(PolicyTool.rb.getString("Add Principal"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
        button.addActionListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
                (new AddPrinButtonListener(tool, tw, this, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
        tw.addNewComponent(panel, button, PE_ADD_PRIN_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
                0, 0, 1, 1, 100.0, 0.0, GridBagConstraints.HORIZONTAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
        button = new Button(PolicyTool.rb.getString("Edit Principal"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
        button.addActionListener(new EditPrinButtonListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
                                                (tool, tw, this, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
        tw.addNewComponent(panel, button, PE_EDIT_PRIN_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
                1, 0, 1, 1, 100.0, 0.0, GridBagConstraints.HORIZONTAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
        button = new Button(PolicyTool.rb.getString("Remove Principal"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
        button.addActionListener(new RemovePrinButtonListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
                                        (tool, tw, this, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
        tw.addNewComponent(panel, button, PE_REMOVE_PRIN_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
                2, 0, 1, 1, 100.0, 0.0, GridBagConstraints.HORIZONTAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
        tw.addNewComponent(this, panel, PE_PANEL0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
                1, 2, 1, 1, 0.0, 0.0, GridBagConstraints.HORIZONTAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
        // principal label and list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
        label = new Label(PolicyTool.rb.getString("Principals:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
        tw.addNewComponent(this, label, PE_PRIN_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
                           0, 3, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
                           tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
        tw.addNewComponent(this, prinList, PE_PRIN_LIST,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
                           1, 3, 3, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
                           tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
        // panel for permission buttons
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
        panel = new Panel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
        panel.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
        button = new Button(PolicyTool.rb.getString("  Add Permission"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
        button.addActionListener(new AddPermButtonListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
                                                (tool, tw, this, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
        tw.addNewComponent(panel, button, PE_ADD_PERM_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
                0, 0, 1, 1, 100.0, 0.0, GridBagConstraints.HORIZONTAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
        button = new Button(PolicyTool.rb.getString("  Edit Permission"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
        button.addActionListener(new EditPermButtonListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
                                                (tool, tw, this, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
        tw.addNewComponent(panel, button, PE_EDIT_PERM_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
                1, 0, 1, 1, 100.0, 0.0, GridBagConstraints.HORIZONTAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
        button = new Button(PolicyTool.rb.getString("Remove Permission"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
        button.addActionListener(new RemovePermButtonListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
                                        (tool, tw, this, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
        tw.addNewComponent(panel, button, PE_REMOVE_PERM_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
                2, 0, 1, 1, 100.0, 0.0, GridBagConstraints.HORIZONTAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
        tw.addNewComponent(this, panel, PE_PANEL1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
                0, 4, 2, 1, 0.0, 0.0, GridBagConstraints.HORIZONTAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
                tw.LITE_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
        // permission list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
        tw.addNewComponent(this, permList, PE_PERM_LIST,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
                           0, 5, 3, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
                           tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
        // panel for Done and Cancel buttons
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
        panel = new Panel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
        panel.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
        // Done Button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
        button = new Button(PolicyTool.rb.getString("Done"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
        button.addActionListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
                (new AddEntryDoneButtonListener(tool, tw, this, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
        tw.addNewComponent(panel, button, PE_DONE_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
                           0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
        // Cancel Button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
        button = new Button(PolicyTool.rb.getString("Cancel"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
        button.addActionListener(new CancelButtonListener(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
        tw.addNewComponent(panel, button, PE_CANCEL_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
                           1, 0, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
        // add the panel
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
        tw.addNewComponent(this, panel, PE_PANEL2,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
                0, 6, 2, 1, 0.0, 0.0, GridBagConstraints.VERTICAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
        setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
     * Read all the Policy information data in the dialog box
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
     * and construct a PolicyEntry object with it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
    PolicyEntry getPolicyEntryFromDialog()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1752
        throws InvalidParameterException, MalformedURLException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
        NoSuchMethodException, ClassNotFoundException, InstantiationException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
        IllegalAccessException, InvocationTargetException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
        CertificateException, IOException, Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
        // get the Codebase
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
        TextField tf = (TextField)getComponent(PE_CODEBASE_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
        String codebase = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
        if (tf.getText().trim().equals("") == false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
                codebase = new String(tf.getText().trim());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
        // get the SignedBy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
        tf = (TextField)getComponent(PE_SIGNEDBY_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
        String signedby = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1766
        if (tf.getText().trim().equals("") == false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
                signedby = new String(tf.getText().trim());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
        // construct a new GrantEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1770
        PolicyParser.GrantEntry ge =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
                        new PolicyParser.GrantEntry(signedby, codebase);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
        // get the new Principals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
        LinkedList<PolicyParser.PrincipalEntry> prins =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
                                new LinkedList<PolicyParser.PrincipalEntry>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
        TaggedList prinList = (TaggedList)getComponent(PE_PRIN_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
        for (int i = 0; i < prinList.getItemCount(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
            prins.add((PolicyParser.PrincipalEntry)prinList.getObject(i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
        ge.principals = prins;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
        // get the new Permissions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
        Vector<PolicyParser.PermissionEntry> perms =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
                        new Vector<PolicyParser.PermissionEntry>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
        TaggedList permList = (TaggedList)getComponent(PE_PERM_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
        for (int i = 0; i < permList.getItemCount(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
            perms.addElement((PolicyParser.PermissionEntry)permList.getObject(i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
        ge.permissionEntries = perms;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
        // construct a new PolicyEntry object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
        PolicyEntry entry = new PolicyEntry(tool, ge);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
        return entry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
     * display a dialog box for the user to enter KeyStore information
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
    void keyStoreDialog(int mode) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
        // find where the PolicyTool gui is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
        Point location = tw.getLocationOnScreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
        setBounds(location.x + 25, location.y + 100, 500, 300);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
        setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
        if (mode == EDIT_KEYSTORE) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
            // KeyStore label and textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
            Label label = new Label
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
                        (PolicyTool.rb.getString("KeyStore URL:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
            tw.addNewComponent(this, label, KSD_NAME_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
                               0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
                               tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
            TextField tf = new TextField(tool.getKeyStoreName(), 30);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
            // URL to U R L, so that accessibility reader will pronounce well
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
            tf.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
                PolicyTool.rb.getString("KeyStore U R L:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
            tw.addNewComponent(this, tf, KSD_NAME_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
                               1, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
                               tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
            // KeyStore type and textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
            label = new Label(PolicyTool.rb.getString("KeyStore Type:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
            tw.addNewComponent(this, label, KSD_TYPE_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
                               0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
                               tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
            tf = new TextField(tool.getKeyStoreType(), 30);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
            tf.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
                PolicyTool.rb.getString("KeyStore Type:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
            tw.addNewComponent(this, tf, KSD_TYPE_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
                               1, 1, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
                               tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
            // KeyStore provider and textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
            label = new Label(PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
                                ("KeyStore Provider:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
            tw.addNewComponent(this, label, KSD_PROVIDER_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
                               0, 2, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
                               tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
            tf = new TextField(tool.getKeyStoreProvider(), 30);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
            tf.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
                PolicyTool.rb.getString("KeyStore Provider:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
            tw.addNewComponent(this, tf, KSD_PROVIDER_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
                               1, 2, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
                               tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
            // KeyStore password URL and textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
            label = new Label(PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
                                ("KeyStore Password URL:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
            tw.addNewComponent(this, label, KSD_PWD_URL_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
                               0, 3, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
                               tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
            tf = new TextField(tool.getKeyStorePwdURL(), 30);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
            tf.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
                PolicyTool.rb.getString("KeyStore Password U R L:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
            tw.addNewComponent(this, tf, KSD_PWD_URL_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
                               1, 3, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
                               tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
            // OK button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
            Button okButton = new Button(PolicyTool.rb.getString("OK"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
            okButton.addActionListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
                        (new ChangeKeyStoreOKButtonListener(tool, tw, this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
            tw.addNewComponent(this, okButton, KSD_OK_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
                        0, 4, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
            // cancel button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
            Button cancelButton = new Button(PolicyTool.rb.getString("Cancel"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
            cancelButton.addActionListener(new CancelButtonListener(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
            tw.addNewComponent(this, cancelButton, KSD_CANCEL_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
                        1, 4, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
        setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
     * display a dialog box for the user to input Principal info
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
     * if editPolicyEntry is false, then we are adding Principals to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
     * a new PolicyEntry, and we only update the GUI listing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
     * with the new Principal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
     * if edit is true, then we are editing an existing Policy entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
    void displayPrincipalDialog(boolean editPolicyEntry, boolean edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
        PolicyParser.PrincipalEntry editMe = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
        // get the Principal selected from the Principal List
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
        TaggedList prinList = (TaggedList)getComponent(PE_PRIN_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
        int prinIndex = prinList.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
        if (edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
            editMe = (PolicyParser.PrincipalEntry)prinList.getObject(prinIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
        ToolDialog newTD = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
                (PolicyTool.rb.getString("Principals"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
        newTD.addWindowListener(new ChildWindowListener(newTD));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
        // find where the PolicyTool gui is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
        Point location = getLocationOnScreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
        newTD.setBounds(location.x + 50, location.y + 100, 650, 190);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
        newTD.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
        newTD.setResizable(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
        // description label
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
        Label label = (edit ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
                new Label(PolicyTool.rb.getString("  Edit Principal:")) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
                new Label(PolicyTool.rb.getString("  Add New Principal:")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
        tw.addNewComponent(newTD, label, PRD_DESC_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
                           0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
                           tw.TOP_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1917
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1918
        // principal choice
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
        Choice choice = new Choice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
        choice.add(PRIN_TYPE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
        choice.getAccessibleContext().setAccessibleName(PRIN_TYPE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
        for (int i = 0; i < PRIN_ARRAY.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
            Prin next = PRIN_ARRAY.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
            choice.add(next.CLASS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
        choice.addItemListener(new PrincipalTypeMenuListener(newTD));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
        if (edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
            if (PolicyParser.PrincipalEntry.WILDCARD_CLASS.equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
                                (editMe.getPrincipalClass())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1931
                choice.select(PRIN_TYPE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
                Prin inputPrin = getPrin(editMe.getPrincipalClass(), true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
                if (inputPrin != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
                    choice.select(inputPrin.CLASS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
        tw.addNewComponent(newTD, choice, PRD_PRIN_CHOICE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
                           0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
        // principal textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
        TextField tf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
        tf = (edit ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
                new TextField(editMe.getDisplayClass(), 30) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
                new TextField(30));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
        tf.getAccessibleContext().setAccessibleName(PRIN_TYPE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1950
        tw.addNewComponent(newTD, tf, PRD_PRIN_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
                           1, 1, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1954
        // name label and textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1955
        label = new Label(PRIN_NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
        tf = (edit ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
                new TextField(editMe.getDisplayName(), 40) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1958
                new TextField(40));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
        tf.getAccessibleContext().setAccessibleName(PRIN_NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
        tw.addNewComponent(newTD, label, PRD_NAME_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
                           0, 2, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
        tw.addNewComponent(newTD, tf, PRD_NAME_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
                           1, 2, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
        // OK button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
        Button okButton = new Button(PolicyTool.rb.getString("OK"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
        okButton.addActionListener(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
            new NewPolicyPrinOKButtonListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
                                        (tool, tw, this, newTD, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
        tw.addNewComponent(newTD, okButton, PRD_OK_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
                           0, 3, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
                           tw.TOP_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
        // cancel button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
        Button cancelButton = new Button(PolicyTool.rb.getString("Cancel"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
        cancelButton.addActionListener(new CancelButtonListener(newTD));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
        tw.addNewComponent(newTD, cancelButton, PRD_CANCEL_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
                           1, 3, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
                           tw.TOP_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
        newTD.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
     * display a dialog box for the user to input Permission info
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
     * if editPolicyEntry is false, then we are adding Permissions to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
     * a new PolicyEntry, and we only update the GUI listing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1991
     * with the new Permission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
     * if edit is true, then we are editing an existing Permission entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
    void displayPermissionDialog(boolean editPolicyEntry, boolean edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
        PolicyParser.PermissionEntry editMe = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
        // get the Permission selected from the Permission List
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
        TaggedList permList = (TaggedList)getComponent(PE_PERM_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
        int permIndex = permList.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
        if (edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
            editMe = (PolicyParser.PermissionEntry)permList.getObject(permIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
        ToolDialog newTD = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
                (PolicyTool.rb.getString("Permissions"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
        newTD.addWindowListener(new ChildWindowListener(newTD));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
        // find where the PolicyTool gui is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
        Point location = getLocationOnScreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2013
        newTD.setBounds(location.x + 50, location.y + 100, 700, 250);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
        newTD.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
        newTD.setResizable(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2017
        // description label
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
        Label label = (edit ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
                new Label(PolicyTool.rb.getString("  Edit Permission:")) :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
                new Label(PolicyTool.rb.getString("  Add New Permission:")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
        tw.addNewComponent(newTD, label, PD_DESC_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
                           0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
                           tw.TOP_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
        // permission choice (added in alphabetical order)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
        Choice choice = new Choice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
        choice.add(PERM);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
        choice.getAccessibleContext().setAccessibleName(PERM);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
        for (int i = 0; i < PERM_ARRAY.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
            Perm next = PERM_ARRAY.get(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
            choice.add(next.CLASS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
        choice.addItemListener(new PermissionMenuListener(newTD));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
        tw.addNewComponent(newTD, choice, PD_PERM_CHOICE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
                           0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2036
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
        // permission textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
        TextField tf;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
        tf = (edit ? new TextField(editMe.permission, 30) : new TextField(30));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
        tf.getAccessibleContext().setAccessibleName(PERM);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2042
        if (edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2043
            Perm inputPerm = getPerm(editMe.permission, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2044
            if (inputPerm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2045
                choice.select(inputPerm.CLASS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
        tw.addNewComponent(newTD, tf, PD_PERM_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
                           1, 1, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2052
        // name label and textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2053
        choice = new Choice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2054
        choice.add(PERM_NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
        choice.getAccessibleContext().setAccessibleName(PERM_NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
        choice.addItemListener(new PermissionNameMenuListener(newTD));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
        tf = (edit ? new TextField(editMe.name, 40) : new TextField(40));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2058
        tf.getAccessibleContext().setAccessibleName(PERM_NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2059
        if (edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
            setPermissionNames(getPerm(editMe.permission, true), choice, tf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
        tw.addNewComponent(newTD, choice, PD_NAME_CHOICE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
                           0, 2, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
        tw.addNewComponent(newTD, tf, PD_NAME_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
                           1, 2, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2069
        // actions label and textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
        choice = new Choice();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
        choice.add(PERM_ACTIONS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
        choice.getAccessibleContext().setAccessibleName(PERM_ACTIONS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2073
        choice.addItemListener(new PermissionActionsMenuListener(newTD));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
        tf = (edit ? new TextField(editMe.action, 40) : new TextField(40));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
        tf.getAccessibleContext().setAccessibleName(PERM_ACTIONS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2076
        if (edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2077
            setPermissionActions(getPerm(editMe.permission, true), choice, tf);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
        tw.addNewComponent(newTD, choice, PD_ACTIONS_CHOICE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
                           0, 3, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2082
        tw.addNewComponent(newTD, tf, PD_ACTIONS_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
                           1, 3, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2085
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2086
        // signedby label and textfield
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
        label = new Label(PolicyTool.rb.getString("Signed By:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
        tw.addNewComponent(newTD, label, PD_SIGNEDBY_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
                           0, 4, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2091
        tf = (edit ? new TextField(editMe.signedBy, 40) : new TextField(40));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2092
        tf.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2093
                PolicyTool.rb.getString("Signed By:"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2094
        tw.addNewComponent(newTD, tf, PD_SIGNEDBY_TEXTFIELD,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2095
                           1, 4, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2096
                           tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2097
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2098
        // OK button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2099
        Button okButton = new Button(PolicyTool.rb.getString("OK"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2100
        okButton.addActionListener(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2101
            new NewPolicyPermOKButtonListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2102
                                    (tool, tw, this, newTD, edit));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2103
        tw.addNewComponent(newTD, okButton, PD_OK_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2104
                           0, 5, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2105
                           tw.TOP_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2106
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2107
        // cancel button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2108
        Button cancelButton = new Button(PolicyTool.rb.getString("Cancel"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2109
        cancelButton.addActionListener(new CancelButtonListener(newTD));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2110
        tw.addNewComponent(newTD, cancelButton, PD_CANCEL_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2111
                           1, 5, 1, 1, 0.0, 0.0, GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2112
                           tw.TOP_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2113
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2114
        newTD.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2116
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2118
     * construct a Principal object from the Principal Info Dialog Box
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2119
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2120
    PolicyParser.PrincipalEntry getPrinFromDialog() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2121
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2122
        TextField tf = (TextField)getComponent(PRD_PRIN_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2123
        String pclass = new String(tf.getText().trim());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2124
        tf = (TextField)getComponent(PRD_NAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2125
        String pname = new String(tf.getText().trim());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2126
        if (pclass.equals("*")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2127
            pclass = PolicyParser.PrincipalEntry.WILDCARD_CLASS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2128
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2129
        if (pname.equals("*")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2130
            pname = PolicyParser.PrincipalEntry.WILDCARD_NAME;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2131
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2132
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2133
        PolicyParser.PrincipalEntry pppe = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2134
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2135
        if ((pclass.equals(PolicyParser.PrincipalEntry.WILDCARD_CLASS)) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2136
            (!pname.equals(PolicyParser.PrincipalEntry.WILDCARD_NAME))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2137
            throw new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2138
                        (PolicyTool.rb.getString("Cannot Specify Principal " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2139
                        "with a Wildcard Class without a Wildcard Name"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2140
        } else if (pname.equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2141
            throw new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2142
                        (PolicyTool.rb.getString("Cannot Specify Principal " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2143
                        "without a Name"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2144
        } else if (pclass.equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2145
            // make this consistent with what PolicyParser does
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2146
            // when it sees an empty principal class
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2147
            pclass = PolicyParser.REPLACE_NAME;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2148
            tool.warnings.addElement(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2149
                        "Warning: Principal name '" + pname +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2150
                                "' specified without a Principal class.\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2151
                        "\t'" + pname + "' will be interpreted " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2152
                                "as a key store alias.\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2153
                        "\tThe final principal class will be " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2154
                                ToolDialog.X500_PRIN_CLASS + ".\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2155
                        "\tThe final principal name will be " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2156
                                "determined by the following:\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2157
                        "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2158
                        "\tIf the key store entry identified by '"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2159
                                + pname + "'\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2160
                        "\tis a key entry, then the principal name will be\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2161
                        "\tthe subject distinguished name from the first\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2162
                        "\tcertificate in the entry's certificate chain.\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2163
                        "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2164
                        "\tIf the key store entry identified by '" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2165
                                pname + "'\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2166
                        "\tis a trusted certificate entry, then the\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2167
                        "\tprincipal name will be the subject distinguished\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2168
                        "\tname from the trusted public key certificate.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2169
            tw.displayStatusDialog(this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2170
                        "'" + pname + "' will be interpreted as a key " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2171
                        "store alias.  View Warning Log for details.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2172
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2173
        return new PolicyParser.PrincipalEntry(pclass, pname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2175
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2176
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2177
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2178
     * construct a Permission object from the Permission Info Dialog Box
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2179
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2180
    PolicyParser.PermissionEntry getPermFromDialog() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2181
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2182
        TextField tf = (TextField)getComponent(PD_PERM_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2183
        String permission = new String(tf.getText().trim());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2184
        tf = (TextField)getComponent(PD_NAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2185
        String name = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2186
        if (tf.getText().trim().equals("") == false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2187
            name = new String(tf.getText().trim());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2188
        if (permission.equals("") ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2189
            (!permission.equals(ALL_PERM_CLASS) && name == null)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2190
            throw new InvalidParameterException(PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2191
                ("Permission and Target Name must have a value"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2192
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2193
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2194
        // When the permission is FilePermission, we need to check the name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2195
        // to make sure it's not escaped. We believe --
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2196
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2197
        // String             name.lastIndexOf("\\\\")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2198
        // ----------------   ------------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2199
        // c:\foo\bar         -1, legal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2200
        // c:\\foo\\bar       2, illegal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2201
        // \\server\share     0, legal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2202
        // \\\\server\share   2, illegal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2203
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2204
        if (permission.equals(FILE_PERM_CLASS) && name.lastIndexOf("\\\\") > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2205
            char result = tw.displayYesNoDialog(this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2206
                    PolicyTool.rb.getString("Warning"),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2207
                    PolicyTool.rb.getString(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2208
                        "Warning: File name may include escaped backslash characters. " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2209
                        "It is not necessary to escape backslash characters " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2210
                        "(the tool escapes characters as necessary when writing " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2211
                        "the policy contents to the persistent store).\n\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2212
                        "Click on Retain to retain the entered name, or click on " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2213
                        "Edit to edit the name."),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2214
                    PolicyTool.rb.getString("Retain"),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2215
                    PolicyTool.rb.getString("Edit")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2216
                    );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2217
            if (result != 'Y') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2218
                // an invisible exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2219
                throw new NoDisplayException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2220
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2221
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2222
        // get the Actions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2223
        tf = (TextField)getComponent(PD_ACTIONS_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2224
        String actions = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2225
        if (tf.getText().trim().equals("") == false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2226
            actions = new String(tf.getText().trim());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2227
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2228
        // get the Signed By
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2229
        tf = (TextField)getComponent(PD_SIGNEDBY_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2230
        String signedBy = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2231
        if (tf.getText().trim().equals("") == false)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2232
            signedBy = new String(tf.getText().trim());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2233
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2234
        PolicyParser.PermissionEntry pppe = new PolicyParser.PermissionEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2235
                                (permission, name, actions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2236
        pppe.signedBy = signedBy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2237
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2238
        // see if the signers have public keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2239
        if (signedBy != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2240
                String signers[] = tool.parseSigners(pppe.signedBy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2241
                for (int i = 0; i < signers.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2242
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2243
                    PublicKey pubKey = tool.getPublicKeyAlias(signers[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2244
                    if (pubKey == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2245
                        MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2246
                            (PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2247
                            ("Warning: A public key for alias " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2248
                            "'signers[i]' does not exist.  " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2249
                            "Make sure a KeyStore is properly configured."));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2250
                        Object[] source = {signers[i]};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2251
                        tool.warnings.addElement(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2252
                        tw.displayStatusDialog(this, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2253
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2254
                } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2255
                    tw.displayErrorDialog(this, e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2256
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2257
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2258
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2259
        return pppe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2260
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2261
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2262
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2263
     * confirm that the user REALLY wants to remove the Policy Entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2264
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2265
    void displayConfirmRemovePolicyEntry() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2266
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2267
        // find the entry to be removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2268
        List list = (List)tw.getComponent(tw.MW_POLICY_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2269
        int index = list.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2270
        PolicyEntry entries[] = tool.getEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2271
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2272
        // find where the PolicyTool gui is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2273
        Point location = tw.getLocationOnScreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2274
        setBounds(location.x + 25, location.y + 100, 600, 400);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2275
        setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2276
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2277
        // ask the user do they really want to do this?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2278
        Label label = new Label
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2279
                (PolicyTool.rb.getString("Remove this Policy Entry?"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2280
        tw.addNewComponent(this, label, CRPE_LABEL1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2281
                           0, 0, 2, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2282
                           tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2283
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2284
        // display the policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2285
        label = new Label(entries[index].codebaseToString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2286
        tw.addNewComponent(this, label, CRPE_LABEL2,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2287
                        0, 1, 2, 1, 0.0, 0.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2288
        label = new Label(entries[index].principalsToString().trim());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2289
        tw.addNewComponent(this, label, CRPE_LABEL2+1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2290
                        0, 2, 2, 1, 0.0, 0.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2291
        Vector<PolicyParser.PermissionEntry> perms =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2292
                        entries[index].getGrantEntry().permissionEntries;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2293
        for (int i = 0; i < perms.size(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2294
            PolicyParser.PermissionEntry nextPerm = perms.elementAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2295
            String permString = ToolDialog.PermissionEntryToUserFriendlyString(nextPerm);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2296
            label = new Label("    " + permString);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2297
            if (i == (perms.size()-1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2298
                tw.addNewComponent(this, label, CRPE_LABEL2 + 2 + i,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2299
                                 1, 3 + i, 1, 1, 0.0, 0.0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2300
                                 GridBagConstraints.BOTH, tw.BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2301
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2302
                tw.addNewComponent(this, label, CRPE_LABEL2 + 2 + i,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2303
                                 1, 3 + i, 1, 1, 0.0, 0.0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2304
                                 GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2305
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2306
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2307
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2308
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2309
        // add OK/CANCEL buttons in a new panel
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2310
        Panel panel = new Panel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2311
        panel.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2312
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2313
        // OK button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2314
        Button okButton = new Button(PolicyTool.rb.getString("OK"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2315
        okButton.addActionListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2316
                (new ConfirmRemovePolicyEntryOKButtonListener(tool, tw, this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2317
        tw.addNewComponent(panel, okButton, CRPE_PANEL_OK,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2318
                           0, 0, 1, 1, 0.0, 0.0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2319
                           GridBagConstraints.VERTICAL, tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2320
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2321
        // cancel button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2322
        Button cancelButton = new Button(PolicyTool.rb.getString("Cancel"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2323
        cancelButton.addActionListener(new CancelButtonListener(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2324
        tw.addNewComponent(panel, cancelButton, CRPE_PANEL_CANCEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2325
                           1, 0, 1, 1, 0.0, 0.0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2326
                           GridBagConstraints.VERTICAL, tw.LR_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2327
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2328
        tw.addNewComponent(this, panel, CRPE_LABEL2 + 2 + perms.size(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2329
                           0, 3 + perms.size(), 2, 1, 0.0, 0.0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2330
                           GridBagConstraints.VERTICAL, tw.TOP_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2331
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2332
        pack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2333
        setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2334
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2335
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2336
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2337
     * perform SAVE AS
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2338
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2339
    void displaySaveAsDialog(int nextEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2340
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2341
        // pop up a dialog box for the user to enter a filename.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2342
        FileDialog fd = new FileDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2343
                (tw, PolicyTool.rb.getString("Save As"), FileDialog.SAVE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2344
        fd.addWindowListener(new WindowAdapter() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2345
            public void windowClosing(WindowEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2346
                e.getWindow().setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2347
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2348
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2349
        fd.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2350
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2351
        // see if the user hit cancel
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2352
        if (fd.getFile() == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2353
            fd.getFile().equals(""))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2354
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2355
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2356
        // get the entered filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2357
        String filename = new String(fd.getDirectory() + fd.getFile());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2358
        fd.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2359
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2360
        // see if the file already exists
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2361
        File saveAsFile = new File(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2362
        if (saveAsFile.exists()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2363
            // display a dialog box for the user to enter policy info
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2364
            ToolDialog td = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2365
                (PolicyTool.rb.getString("Overwrite File"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2366
            td.displayOverWriteFileDialog(filename, nextEvent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2367
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2368
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2369
                // save the policy entries to a file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2370
                tool.savePolicy(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2371
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2372
                // display status
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2373
                MessageFormat form = new MessageFormat(PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2374
                        ("Policy successfully written to filename"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2375
                Object[] source = {filename};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2376
                tw.displayStatusDialog(null, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2377
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2378
                // display the new policy filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2379
                TextField newFilename = (TextField)tw.getComponent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2380
                                (tw.MW_FILENAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2381
                newFilename.setText(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2382
                tw.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2383
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2384
                // now continue with the originally requested command
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2385
                // (QUIT, NEW, or OPEN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2386
                userSaveContinue(tool, tw, this, nextEvent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2387
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2388
            } catch (FileNotFoundException fnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2389
                if (filename == null || filename.equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2390
                    tw.displayErrorDialog(null, new FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2391
                                (PolicyTool.rb.getString("null filename")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2392
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2393
                    tw.displayErrorDialog(null, fnfe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2394
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2395
            } catch (Exception ee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2396
                tw.displayErrorDialog(null, ee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2397
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2398
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2399
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2400
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2401
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2402
     * ask user if they want to save changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2403
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2404
    void displayUserSave(int select) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2405
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2406
        if (tool.modified == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2407
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2408
            // find where the PolicyTool gui is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2409
            Point location = tw.getLocationOnScreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2410
            setBounds(location.x + 75, location.y + 100, 400, 150);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2411
            setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2412
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2413
            Label label = new Label
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2414
                (PolicyTool.rb.getString("Save changes?"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2415
            tw.addNewComponent(this, label, USC_LABEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2416
                               0, 0, 3, 1, 0.0, 0.0, GridBagConstraints.BOTH,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2417
                               tw.L_TOP_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2418
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2419
            Panel panel = new Panel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2420
            panel.setLayout(new GridBagLayout());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2421
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2422
            Button yesButton = new Button(PolicyTool.rb.getString("Yes"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2423
            yesButton.addActionListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2424
                        (new UserSaveYesButtonListener(this, tool, tw, select));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2425
            tw.addNewComponent(panel, yesButton, USC_YES_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2426
                               0, 0, 1, 1, 0.0, 0.0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2427
                               GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2428
                               tw.LR_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2429
            Button noButton = new Button(PolicyTool.rb.getString("No"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2430
            noButton.addActionListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2431
                        (new UserSaveNoButtonListener(this, tool, tw, select));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2432
            tw.addNewComponent(panel, noButton, USC_NO_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2433
                               1, 0, 1, 1, 0.0, 0.0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2434
                               GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2435
                               tw.LR_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2436
            Button cancelButton = new Button(PolicyTool.rb.getString("Cancel"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2437
            cancelButton.addActionListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2438
                        (new UserSaveCancelButtonListener(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2439
            tw.addNewComponent(panel, cancelButton, USC_CANCEL_BUTTON,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2440
                               2, 0, 1, 1, 0.0, 0.0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2441
                               GridBagConstraints.VERTICAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2442
                               tw.LR_BOTTOM_PADDING);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2443
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2444
            tw.addNewComponent(this, panel, USC_PANEL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2445
                               0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.BOTH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2446
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2447
            pack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2448
            setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2449
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2450
            // just do the original request (QUIT, NEW, or OPEN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2451
            userSaveContinue(tool, tw, this, select);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2452
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2453
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2454
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2455
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2456
     * when the user sees the 'YES', 'NO', 'CANCEL' buttons on the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2457
     * displayUserSave dialog, and the click on one of them,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2458
     * we need to continue the originally requested action
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2459
     * (either QUITting, opening NEW policy file, or OPENing an existing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2460
     * policy file.  do that now.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2461
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2462
    void userSaveContinue(PolicyTool tool, ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2463
                        ToolDialog us, int select) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2464
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2465
        // now either QUIT, open a NEW policy file, or OPEN an existing policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2466
        switch(select) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2467
        case ToolDialog.QUIT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2468
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2469
            tw.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2470
            tw.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2471
            System.exit(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2472
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2473
        case ToolDialog.NEW:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2474
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2475
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2476
                tool.openPolicy(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2477
            } catch (Exception ee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2478
                tool.modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2479
                tw.displayErrorDialog(null, ee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2480
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2481
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2482
            // display the policy entries via the policy list textarea
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2483
            List list = new List(40, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2484
            list.addActionListener(new PolicyListListener(tool, tw));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2485
            tw.replacePolicyList(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2486
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2487
            // display null policy filename and keystore
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2488
            TextField newFilename = (TextField)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2489
                                tw.getComponent(tw.MW_FILENAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2490
            newFilename.setText("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2491
            tw.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2492
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2493
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2494
        case ToolDialog.OPEN:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2495
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2496
            // pop up a dialog box for the user to enter a filename.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2497
            FileDialog fd = new FileDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2498
                (tw, PolicyTool.rb.getString("Open"), FileDialog.LOAD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2499
            fd.addWindowListener(new WindowAdapter() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2500
                public void windowClosing(WindowEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2501
                    e.getWindow().setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2502
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2503
            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2504
            fd.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2505
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2506
            // see if the user hit 'cancel'
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2507
            if (fd.getFile() == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2508
                fd.getFile().equals(""))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2509
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2510
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2511
            // get the entered filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2512
            String policyFile = new String(fd.getDirectory() + fd.getFile());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2513
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2514
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2515
                // open the policy file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2516
                tool.openPolicy(policyFile);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2517
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2518
                // display the policy entries via the policy list textarea
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2519
                list = new List(40, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2520
                list.addActionListener(new PolicyListListener(tool, tw));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2521
                PolicyEntry entries[] = tool.getEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2522
                if (entries != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2523
                    for (int i = 0; i < entries.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2524
                        list.add(entries[i].headerToString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2525
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2526
                tw.replacePolicyList(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2527
                tool.modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2528
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2529
                // display the new policy filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2530
                newFilename = (TextField)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2531
                                tw.getComponent(tw.MW_FILENAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2532
                newFilename.setText(policyFile);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2533
                tw.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2534
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2535
                // inform user of warnings
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2536
                if (tool.newWarning == true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2537
                    tw.displayStatusDialog(null, PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2538
                        ("Errors have occurred while opening the " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2539
                        "policy configuration.  View the Warning Log " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2540
                        "for more information."));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2541
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2542
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2543
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2544
                // add blank policy listing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2545
                list = new List(40, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2546
                list.addActionListener(new PolicyListListener(tool, tw));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2547
                tw.replacePolicyList(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2548
                tool.setPolicyFileName(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2549
                tool.modified = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2550
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2551
                // display a null policy filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2552
                newFilename = (TextField)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2553
                                tw.getComponent(tw.MW_FILENAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2554
                newFilename.setText("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2555
                tw.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2556
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2557
                // display the error
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2558
                MessageFormat form = new MessageFormat(PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2559
                    ("Could not open policy file: policyFile: e.toString()"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2560
                Object[] source = {policyFile, e.toString()};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2561
                tw.displayErrorDialog(null, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2562
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2563
            break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2564
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2565
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2566
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2567
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2568
     * Return a Menu list of names for a given permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2569
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2570
     * If inputPerm's TARGETS are null, then this means TARGETS are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2571
     * not allowed to be entered (and the TextField is set to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2572
     * non-editable).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2573
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2574
     * If TARGETS are valid but there are no standard ones
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2575
     * (user must enter them by hand) then the TARGETS array may be empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2576
     * (and of course non-null).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2577
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2578
    void setPermissionNames(Perm inputPerm, Choice names, TextField field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2579
        names.removeAll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2580
        names.add(PERM_NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2581
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2582
        if (inputPerm == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2583
            // custom permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2584
            field.setEditable(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2585
        } else if (inputPerm.TARGETS == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2586
            // standard permission with no targets
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2587
            field.setEditable(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2588
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2589
            // standard permission with standard targets
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2590
            field.setEditable(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2591
            for (int i = 0; i < inputPerm.TARGETS.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2592
                names.add(inputPerm.TARGETS[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2593
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2594
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2595
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2596
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2597
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2598
     * Return a Menu list of actions for a given permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2599
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2600
     * If inputPerm's ACTIONS are null, then this means ACTIONS are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2601
     * not allowed to be entered (and the TextField is set to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2602
     * non-editable).  This is typically true for BasicPermissions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2603
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2604
     * If ACTIONS are valid but there are no standard ones
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2605
     * (user must enter them by hand) then the ACTIONS array may be empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2606
     * (and of course non-null).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2607
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2608
    void setPermissionActions(Perm inputPerm, Choice actions, TextField field) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2609
        actions.removeAll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2610
        actions.add(PERM_ACTIONS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2611
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2612
        if (inputPerm == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2613
            // custom permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2614
            field.setEditable(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2615
        } else if (inputPerm.ACTIONS == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2616
            // standard permission with no actions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2617
            field.setEditable(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2618
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2619
            // standard permission with standard actions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2620
            field.setEditable(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2621
            for (int i = 0; i < inputPerm.ACTIONS.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2622
                actions.add(inputPerm.ACTIONS[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2623
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2624
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2625
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2626
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2627
    static String PermissionEntryToUserFriendlyString(PolicyParser.PermissionEntry pppe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2628
        String result = pppe.permission;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2629
        if (pppe.name != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2630
            result += " " + pppe.name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2631
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2632
        if (pppe.action != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2633
            result += ", \"" + pppe.action + "\"";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2634
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2635
        if (pppe.signedBy != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2636
            result += ", signedBy " + pppe.signedBy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2637
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2638
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2639
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2640
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2641
    static String PrincipalEntryToUserFriendlyString(PolicyParser.PrincipalEntry pppe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2642
        StringWriter sw = new StringWriter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2643
        PrintWriter pw = new PrintWriter(sw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2644
        pppe.write(pw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2645
        return sw.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2646
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2647
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2648
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2649
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2650
 * Event handler for the PolicyTool window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2651
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2652
class ToolWindowListener implements WindowListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2653
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2654
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2655
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2656
    ToolWindowListener(ToolWindow tw) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2657
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2658
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2659
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2660
    public void windowOpened(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2661
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2662
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2663
    public void windowClosing(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2664
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2665
        // XXX
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2666
        // should we ask user if they want to save changes?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2667
        // (we do if they choose the Menu->Exit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2668
        // seems that if they kill the application by hand,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2669
        // we don't have to ask.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2670
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2671
        tw.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2672
        tw.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2673
        System.exit(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2674
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2675
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2676
    public void windowClosed(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2677
        System.exit(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2678
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2679
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2680
    public void windowIconified(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2681
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2682
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2683
    public void windowDeiconified(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2684
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2685
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2686
    public void windowActivated(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2687
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2688
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2689
    public void windowDeactivated(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2690
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2691
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2692
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2693
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2694
 * Event handler for the Policy List
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2695
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2696
class PolicyListListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2697
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2698
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2699
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2700
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2701
    PolicyListListener(PolicyTool tool, ToolWindow tw) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2702
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2703
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2704
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2705
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2706
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2707
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2708
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2709
        // display the permission list for a policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2710
        ToolDialog td = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2711
                (PolicyTool.rb.getString("Policy Entry"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2712
        td.displayPolicyEntryDialog(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2713
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2714
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2715
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2716
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2717
 * Event handler for the File Menu
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2718
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2719
class FileMenuListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2720
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2721
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2722
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2723
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2724
    FileMenuListener(PolicyTool tool, ToolWindow tw) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2725
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2726
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2727
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2728
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2729
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2730
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2731
        if (PolicyTool.collator.compare(e.getActionCommand(), tw.QUIT) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2732
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2733
            // ask user if they want to save changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2734
            ToolDialog td = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2735
                (PolicyTool.rb.getString("Save Changes"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2736
            td.displayUserSave(td.QUIT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2737
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2738
            // the above method will perform the QUIT as long as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2739
            // user does not CANCEL the request
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2740
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2741
        } else if (PolicyTool.collator.compare(e.getActionCommand(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2742
                                        tw.NEW_POLICY_FILE) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2743
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2744
            // ask user if they want to save changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2745
            ToolDialog td = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2746
                (PolicyTool.rb.getString("Save Changes"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2747
            td.displayUserSave(td.NEW);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2748
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2749
            // the above method will perform the NEW as long as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2750
            // user does not CANCEL the request
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2751
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2752
        } else if (PolicyTool.collator.compare(e.getActionCommand(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2753
                                        tw.OPEN_POLICY_FILE) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2754
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2755
            // ask user if they want to save changes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2756
            ToolDialog td = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2757
                (PolicyTool.rb.getString("Save Changes"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2758
            td.displayUserSave(td.OPEN);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2759
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2760
            // the above method will perform the OPEN as long as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2761
            // user does not CANCEL the request
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2762
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2763
        } else if (PolicyTool.collator.compare(e.getActionCommand(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2764
                                        tw.SAVE_POLICY_FILE) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2765
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2766
            // get the previously entered filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2767
            String filename = ((TextField)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2768
                    tw.getComponent(tw.MW_FILENAME_TEXTFIELD)).getText();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2769
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2770
            // if there is no filename, do a SAVE_AS
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2771
            if (filename == null || filename.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2772
                // user wants to SAVE AS
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2773
                ToolDialog td = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2774
                        (PolicyTool.rb.getString("Save As"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2775
                td.displaySaveAsDialog(td.NOACTION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2776
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2777
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2778
                    // save the policy entries to a file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2779
                    tool.savePolicy(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2780
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2781
                    // display status
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2782
                    MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2783
                        (PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2784
                        ("Policy successfully written to filename"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2785
                    Object[] source = {filename};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2786
                    tw.displayStatusDialog(null, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2787
                } catch (FileNotFoundException fnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2788
                    if (filename == null || filename.equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2789
                        tw.displayErrorDialog(null, new FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2790
                                (PolicyTool.rb.getString("null filename")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2791
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2792
                        tw.displayErrorDialog(null, fnfe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2793
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2794
                } catch (Exception ee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2795
                    tw.displayErrorDialog(null, ee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2796
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2797
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2798
        } else if (PolicyTool.collator.compare(e.getActionCommand(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2799
                                                tw.SAVE_AS_POLICY_FILE) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2800
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2801
            // user wants to SAVE AS
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2802
            ToolDialog td = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2803
                (PolicyTool.rb.getString("Save As"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2804
            td.displaySaveAsDialog(td.NOACTION);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2805
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2806
        } else if (PolicyTool.collator.compare(e.getActionCommand(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2807
                                                tw.VIEW_WARNINGS) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2808
            tw.displayWarningLog(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2809
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2810
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2811
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2812
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2813
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2814
 * Event handler for the main window buttons and Edit Menu
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2815
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2816
class MainWindowListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2817
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2818
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2819
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2820
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2821
    MainWindowListener(PolicyTool tool, ToolWindow tw) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2822
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2823
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2824
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2825
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2826
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2827
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2828
        if (PolicyTool.collator.compare(e.getActionCommand(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2829
                                        tw.ADD_POLICY_ENTRY) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2830
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2831
            // display a dialog box for the user to enter policy info
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2832
            ToolDialog td = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2833
                (PolicyTool.rb.getString("Policy Entry"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2834
            td.displayPolicyEntryDialog(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2835
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2836
        } else if (PolicyTool.collator.compare(e.getActionCommand(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2837
                                        tw.REMOVE_POLICY_ENTRY) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2838
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2839
            // get the selected entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2840
            List list = (List)tw.getComponent(tw.MW_POLICY_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2841
            int index = list.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2842
            if (index < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2843
                tw.displayErrorDialog(null, new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2844
                        (PolicyTool.rb.getString("No Policy Entry selected")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2845
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2846
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2847
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2848
            // ask the user if they really want to remove the policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2849
            ToolDialog td = new ToolDialog(PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2850
                ("Remove Policy Entry"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2851
            td.displayConfirmRemovePolicyEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2852
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2853
        } else if (PolicyTool.collator.compare(e.getActionCommand(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2854
                                        tw.EDIT_POLICY_ENTRY) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2855
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2856
            // get the selected entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2857
            List list = (List)tw.getComponent(tw.MW_POLICY_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2858
            int index = list.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2859
            if (index < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2860
                tw.displayErrorDialog(null, new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2861
                        (PolicyTool.rb.getString("No Policy Entry selected")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2862
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2863
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2864
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2865
            // display the permission list for a policy entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2866
            ToolDialog td = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2867
                (PolicyTool.rb.getString("Policy Entry"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2868
            td.displayPolicyEntryDialog(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2869
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2870
        } else if (PolicyTool.collator.compare(e.getActionCommand(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2871
                                        tw.EDIT_KEYSTORE) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2872
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2873
            // display a dialog box for the user to enter keystore info
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2874
            ToolDialog td = new ToolDialog
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2875
                (PolicyTool.rb.getString("KeyStore"), tool, tw, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2876
            td.keyStoreDialog(td.EDIT_KEYSTORE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2877
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2878
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2879
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2880
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2881
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2882
 * Event handler for OverWriteFileOKButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2883
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2884
class OverWriteFileOKButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2885
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2886
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2887
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2888
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2889
    private String filename;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2890
    private int nextEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2891
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2892
    OverWriteFileOKButtonListener(PolicyTool tool, ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2893
                                ToolDialog td, String filename, int nextEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2894
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2895
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2896
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2897
        this.filename = filename;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2898
        this.nextEvent = nextEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2899
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2900
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2901
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2902
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2903
            // save the policy entries to a file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2904
            tool.savePolicy(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2905
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2906
            // display status
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2907
            MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2908
                (PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2909
                ("Policy successfully written to filename"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2910
            Object[] source = {filename};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2911
            tw.displayStatusDialog(null, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2912
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2913
            // display the new policy filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2914
            TextField newFilename = (TextField)tw.getComponent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2915
                                (tw.MW_FILENAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2916
            newFilename.setText(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2917
            tw.setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2918
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2919
            // now continue with the originally requested command
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2920
            // (QUIT, NEW, or OPEN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2921
            td.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2922
            td.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2923
            td.userSaveContinue(tool, tw, td, nextEvent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2924
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2925
        } catch (FileNotFoundException fnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2926
            if (filename == null || filename.equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2927
                tw.displayErrorDialog(null, new FileNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2928
                                (PolicyTool.rb.getString("null filename")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2929
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2930
                tw.displayErrorDialog(null, fnfe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2931
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2932
            td.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2933
            td.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2934
        } catch (Exception ee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2935
            tw.displayErrorDialog(null, ee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2936
            td.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2937
            td.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2938
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2939
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2940
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2941
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2942
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2943
 * Event handler for AddEntryDoneButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2944
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2945
 * -- if edit is TRUE, then we are EDITing an existing PolicyEntry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2946
 *    and we need to update both the policy and the GUI listing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2947
 *    if edit is FALSE, then we are ADDing a new PolicyEntry,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2948
 *    so we only need to update the GUI listing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2949
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2950
class AddEntryDoneButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2951
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2952
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2953
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2954
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2955
    private boolean edit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2956
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2957
    AddEntryDoneButtonListener(PolicyTool tool, ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2958
                                ToolDialog td, boolean edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2959
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2960
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2961
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2962
        this.edit = edit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2963
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2964
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2965
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2966
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2967
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2968
            // get a PolicyEntry object from the dialog policy info
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2969
            PolicyEntry newEntry = td.getPolicyEntryFromDialog();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2970
            PolicyParser.GrantEntry newGe = newEntry.getGrantEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2971
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2972
            // see if all the signers have public keys
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2973
            if (newGe.signedBy != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2974
                String signers[] = tool.parseSigners(newGe.signedBy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2975
                for (int i = 0; i < signers.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2976
                    PublicKey pubKey = tool.getPublicKeyAlias(signers[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2977
                    if (pubKey == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2978
                        MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2979
                            (PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2980
                            ("Warning: A public key for alias " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2981
                            "'signers[i]' does not exist.  " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2982
                            "Make sure a KeyStore is properly configured."));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2983
                        Object[] source = {signers[i]};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2984
                        tool.warnings.addElement(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2985
                        tw.displayStatusDialog(td, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2986
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2987
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2988
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2989
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2990
            // add the entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2991
            List policyList = (List)tw.getComponent(tw.MW_POLICY_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2992
            if (edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2993
                int listIndex = policyList.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2994
                tool.addEntry(newEntry, listIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2995
                String newCodeBaseStr = newEntry.headerToString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2996
                if (PolicyTool.collator.compare
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2997
                        (newCodeBaseStr, policyList.getItem(listIndex)) != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2998
                    tool.modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2999
                policyList.replaceItem(newCodeBaseStr, listIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3000
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3001
                tool.addEntry(newEntry, -1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3002
                policyList.add(newEntry.headerToString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3003
                tool.modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3004
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3005
            td.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3006
            td.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3007
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3008
        } catch (Exception eee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3009
            tw.displayErrorDialog(td, eee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3010
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3011
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3012
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3013
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3014
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3015
 * Event handler for ChangeKeyStoreOKButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3016
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3017
class ChangeKeyStoreOKButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3018
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3019
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3020
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3021
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3022
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3023
    ChangeKeyStoreOKButtonListener(PolicyTool tool, ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3024
                ToolDialog td) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3025
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3026
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3027
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3028
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3029
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3030
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3031
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3032
        String URLString = ((TextField)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3033
                td.getComponent(td.KSD_NAME_TEXTFIELD)).getText().trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3034
        String type = ((TextField)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3035
                td.getComponent(td.KSD_TYPE_TEXTFIELD)).getText().trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3036
        String provider = ((TextField)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3037
                td.getComponent(td.KSD_PROVIDER_TEXTFIELD)).getText().trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3038
        String pwdURL = ((TextField)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3039
                td.getComponent(td.KSD_PWD_URL_TEXTFIELD)).getText().trim();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3040
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3041
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3042
            tool.openKeyStore
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3043
                        ((URLString.length() == 0 ? null : URLString),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3044
                        (type.length() == 0 ? null : type),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3045
                        (provider.length() == 0 ? null : provider),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3046
                        (pwdURL.length() == 0 ? null : pwdURL));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3047
            tool.modified = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3048
        } catch (Exception ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3049
            MessageFormat form = new MessageFormat(PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3050
                ("Unable to open KeyStore: ex.toString()"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3051
            Object[] source = {ex.toString()};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3052
            tw.displayErrorDialog(td, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3053
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3054
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3055
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3056
        td.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3057
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3058
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3059
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3060
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3061
 * Event handler for AddPrinButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3062
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3063
class AddPrinButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3064
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3065
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3066
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3067
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3068
    private boolean editPolicyEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3069
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3070
    AddPrinButtonListener(PolicyTool tool, ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3071
                                ToolDialog td, boolean editPolicyEntry) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3072
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3073
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3074
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3075
        this.editPolicyEntry = editPolicyEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3076
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3077
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3078
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3079
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3080
        // display a dialog box for the user to enter principal info
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3081
        td.displayPrincipalDialog(editPolicyEntry, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3082
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3083
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3084
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3085
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3086
 * Event handler for AddPermButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3087
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3088
class AddPermButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3089
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3090
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3091
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3092
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3093
    private boolean editPolicyEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3094
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3095
    AddPermButtonListener(PolicyTool tool, ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3096
                                ToolDialog td, boolean editPolicyEntry) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3097
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3098
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3099
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3100
        this.editPolicyEntry = editPolicyEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3101
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3102
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3103
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3104
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3105
        // display a dialog box for the user to enter permission info
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3106
        td.displayPermissionDialog(editPolicyEntry, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3108
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3109
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3110
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3111
 * Event handler for AddPrinOKButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3112
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3113
class NewPolicyPrinOKButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3114
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3115
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3116
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3117
    private ToolDialog listDialog;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3118
    private ToolDialog infoDialog;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3119
    private boolean edit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3120
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3121
    NewPolicyPrinOKButtonListener(PolicyTool tool,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3122
                                ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3123
                                ToolDialog listDialog,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3124
                                ToolDialog infoDialog,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3125
                                boolean edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3126
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3127
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3128
        this.listDialog = listDialog;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3129
        this.infoDialog = infoDialog;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3130
        this.edit = edit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3132
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3133
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3134
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3135
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3136
            // read in the new principal info from Dialog Box
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3137
            PolicyParser.PrincipalEntry pppe =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3138
                        infoDialog.getPrinFromDialog();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3139
            if (pppe != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3140
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3141
                    tool.verifyPrincipal(pppe.getPrincipalClass(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3142
                                        pppe.getPrincipalName());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3143
                } catch (ClassNotFoundException cnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3144
                    MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3145
                                (PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3146
                                ("Warning: Class not found: class"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3147
                    Object[] source = {pppe.getPrincipalClass()};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3148
                    tool.warnings.addElement(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3149
                    tw.displayStatusDialog(infoDialog, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3150
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3151
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3152
                // add the principal to the GUI principal list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3153
                TaggedList prinList =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3154
                    (TaggedList)listDialog.getComponent(listDialog.PE_PRIN_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3155
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3156
                String prinString = ToolDialog.PrincipalEntryToUserFriendlyString(pppe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3157
                if (edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3158
                    // if editing, replace the original principal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3159
                    int index = prinList.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3160
                    prinList.replaceTaggedItem(prinString, pppe, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3161
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3162
                    // if adding, just add it to the end
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3163
                    prinList.addTaggedItem(prinString, pppe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3164
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3165
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3166
            infoDialog.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3167
        } catch (Exception ee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3168
            tw.displayErrorDialog(infoDialog, ee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3169
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3171
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3172
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3173
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3174
 * Event handler for AddPermOKButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3175
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3176
class NewPolicyPermOKButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3177
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3178
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3179
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3180
    private ToolDialog listDialog;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3181
    private ToolDialog infoDialog;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3182
    private boolean edit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3183
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3184
    NewPolicyPermOKButtonListener(PolicyTool tool,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3185
                                ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3186
                                ToolDialog listDialog,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3187
                                ToolDialog infoDialog,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3188
                                boolean edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3189
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3190
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3191
        this.listDialog = listDialog;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3192
        this.infoDialog = infoDialog;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3193
        this.edit = edit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3195
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3196
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3197
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3198
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3199
            // read in the new permission info from Dialog Box
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3200
            PolicyParser.PermissionEntry pppe =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3201
                        infoDialog.getPermFromDialog();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3202
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3203
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3204
                tool.verifyPermission(pppe.permission, pppe.name, pppe.action);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3205
            } catch (ClassNotFoundException cnfe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3206
                MessageFormat form = new MessageFormat(PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3207
                                ("Warning: Class not found: class"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3208
                Object[] source = {pppe.permission};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3209
                tool.warnings.addElement(form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3210
                tw.displayStatusDialog(infoDialog, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3211
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3212
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3213
            // add the permission to the GUI permission list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3214
            TaggedList permList =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3215
                (TaggedList)listDialog.getComponent(listDialog.PE_PERM_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3216
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3217
            String permString = ToolDialog.PermissionEntryToUserFriendlyString(pppe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3218
            if (edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3219
                // if editing, replace the original permission
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3220
                int which = permList.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3221
                permList.replaceTaggedItem(permString, pppe, which);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3222
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3223
                // if adding, just add it to the end
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3224
                permList.addTaggedItem(permString, pppe);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3225
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3226
            infoDialog.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3227
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3228
        } catch (InvocationTargetException ite) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3229
            tw.displayErrorDialog(infoDialog, ite.getTargetException());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3230
        } catch (Exception ee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3231
            tw.displayErrorDialog(infoDialog, ee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3232
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3233
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3234
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3235
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3236
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3237
 * Event handler for RemovePrinButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3238
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3239
class RemovePrinButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3240
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3241
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3242
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3243
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3244
    private boolean edit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3245
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3246
    RemovePrinButtonListener(PolicyTool tool, ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3247
                                ToolDialog td, boolean edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3248
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3249
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3250
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3251
        this.edit = edit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3252
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3253
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3254
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3255
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3256
        // get the Principal selected from the Principal List
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3257
        TaggedList prinList = (TaggedList)td.getComponent(td.PE_PRIN_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3258
        int prinIndex = prinList.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3259
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3260
        if (prinIndex < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3261
            tw.displayErrorDialog(td, new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3262
                (PolicyTool.rb.getString("No principal selected")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3263
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3264
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3265
        // remove the principal from the display
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3266
        prinList.removeTaggedItem(prinIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3267
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3268
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3269
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3270
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3271
 * Event handler for RemovePermButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3272
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3273
class RemovePermButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3274
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3275
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3276
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3277
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3278
    private boolean edit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3279
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3280
    RemovePermButtonListener(PolicyTool tool, ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3281
                                ToolDialog td, boolean edit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3282
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3283
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3284
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3285
        this.edit = edit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3286
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3287
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3288
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3289
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3290
        // get the Permission selected from the Permission List
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3291
        TaggedList permList = (TaggedList)td.getComponent(td.PE_PERM_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3292
        int permIndex = permList.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3293
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3294
        if (permIndex < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3295
            tw.displayErrorDialog(td, new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3296
                (PolicyTool.rb.getString("No permission selected")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3297
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3298
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3299
        // remove the permission from the display
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3300
        permList.removeTaggedItem(permIndex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3301
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3302
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3303
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3304
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3305
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3306
 * Event handler for Edit Principal button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3307
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3308
 * We need the editPolicyEntry boolean to tell us if the user is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3309
 * adding a new PolicyEntry at this time, or editing an existing entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3310
 * If the user is adding a new PolicyEntry, we ONLY update the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3311
 * GUI listing.  If the user is editing an existing PolicyEntry, we
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3312
 * update both the GUI listing and the actual PolicyEntry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3313
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3314
class EditPrinButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3315
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3316
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3317
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3318
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3319
    private boolean editPolicyEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3320
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3321
    EditPrinButtonListener(PolicyTool tool, ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3322
                                ToolDialog td, boolean editPolicyEntry) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3323
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3324
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3325
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3326
        this.editPolicyEntry = editPolicyEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3327
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3328
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3329
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3330
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3331
        // get the Principal selected from the Principal List
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3332
        TaggedList list = (TaggedList)td.getComponent(td.PE_PRIN_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3333
        int prinIndex = list.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3334
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3335
        if (prinIndex < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3336
            tw.displayErrorDialog(td, new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3337
                (PolicyTool.rb.getString("No principal selected")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3338
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3339
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3340
        td.displayPrincipalDialog(editPolicyEntry, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3341
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3342
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3343
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3344
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3345
 * Event handler for Edit Permission button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3346
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3347
 * We need the editPolicyEntry boolean to tell us if the user is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3348
 * adding a new PolicyEntry at this time, or editing an existing entry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3349
 * If the user is adding a new PolicyEntry, we ONLY update the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3350
 * GUI listing.  If the user is editing an existing PolicyEntry, we
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3351
 * update both the GUI listing and the actual PolicyEntry.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3352
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3353
class EditPermButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3354
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3355
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3356
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3357
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3358
    private boolean editPolicyEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3359
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3360
    EditPermButtonListener(PolicyTool tool, ToolWindow tw,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3361
                                ToolDialog td, boolean editPolicyEntry) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3362
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3363
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3364
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3365
        this.editPolicyEntry = editPolicyEntry;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3366
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3367
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3368
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3369
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3370
        // get the Permission selected from the Permission List
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3371
        List list = (List)td.getComponent(td.PE_PERM_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3372
        int permIndex = list.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3373
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3374
        if (permIndex < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3375
            tw.displayErrorDialog(td, new Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3376
                (PolicyTool.rb.getString("No permission selected")));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3377
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3378
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3379
        td.displayPermissionDialog(editPolicyEntry, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3380
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3381
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3382
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3383
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3384
 * Event handler for Principal Popup Menu
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3385
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3386
class PrincipalTypeMenuListener implements ItemListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3387
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3388
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3389
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3390
    PrincipalTypeMenuListener(ToolDialog td) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3391
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3392
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3393
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3394
    public void itemStateChanged(ItemEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3395
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3396
        Choice prin = (Choice)td.getComponent(td.PRD_PRIN_CHOICE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3397
        TextField prinField =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3398
                        (TextField)td.getComponent(td.PRD_PRIN_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3399
        TextField nameField =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3400
                        (TextField)td.getComponent(td.PRD_NAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3401
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3402
        prin.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3403
            PolicyTool.splitToWords((String)e.getItem()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3404
        if (((String)e.getItem()).equals(td.PRIN_TYPE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3405
            // ignore if they choose "Principal Type:" item
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3406
            if (prinField.getText() != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3407
                prinField.getText().length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3408
                Prin inputPrin = td.getPrin(prinField.getText(), true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3409
                prin.select(inputPrin.CLASS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3410
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3411
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3412
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3413
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3414
        // if you change the principal, clear the name
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3415
        if (prinField.getText().indexOf((String)e.getItem()) == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3416
            nameField.setText("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3417
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3418
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3419
        // set the text in the textfield and also modify the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3420
        // pull-down choice menus to reflect the correct possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3421
        // set of names and actions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3422
        Prin inputPrin = td.getPrin((String)e.getItem(), false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3423
        if (inputPrin != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3424
            prinField.setText(inputPrin.FULL_CLASS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3425
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3426
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3427
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3428
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3429
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3430
 * Event handler for Permission Popup Menu
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3431
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3432
class PermissionMenuListener implements ItemListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3433
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3434
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3435
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3436
    PermissionMenuListener(ToolDialog td) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3437
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3438
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3439
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3440
    public void itemStateChanged(ItemEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3441
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3442
        Choice perms = (Choice)td.getComponent(td.PD_PERM_CHOICE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3443
        Choice names = (Choice)td.getComponent(td.PD_NAME_CHOICE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3444
        Choice actions = (Choice)td.getComponent(td.PD_ACTIONS_CHOICE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3445
        TextField nameField =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3446
                        (TextField)td.getComponent(td.PD_NAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3447
        TextField actionsField =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3448
                        (TextField)td.getComponent(td.PD_ACTIONS_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3449
        TextField permField = (TextField)td.getComponent(td.PD_PERM_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3450
        TextField signedbyField =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3451
                        (TextField)td.getComponent(td.PD_SIGNEDBY_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3452
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3453
        perms.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3454
            PolicyTool.splitToWords((String)e.getItem()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3455
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3456
        // ignore if they choose the 'Permission:' item
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3457
        if (PolicyTool.collator.compare((String)e.getItem(), td.PERM) == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3458
            if (permField.getText() != null &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3459
                permField.getText().length() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3460
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3461
                Perm inputPerm = td.getPerm(permField.getText(), true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3462
                if (inputPerm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3463
                    perms.select(inputPerm.CLASS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3464
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3465
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3466
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3467
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3468
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3469
        // if you change the permission, clear the name, actions, and signedBy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3470
        if (permField.getText().indexOf((String)e.getItem()) == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3471
            nameField.setText("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3472
            actionsField.setText("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3473
            signedbyField.setText("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3474
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3475
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3476
        // set the text in the textfield and also modify the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3477
        // pull-down choice menus to reflect the correct possible
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3478
        // set of names and actions
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3479
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3480
        Perm inputPerm = td.getPerm((String)e.getItem(), false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3481
        if (inputPerm == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3482
            permField.setText("");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3483
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3484
            permField.setText(inputPerm.FULL_CLASS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3485
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3486
        td.setPermissionNames(inputPerm, names, nameField);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3487
        td.setPermissionActions(inputPerm, actions, actionsField);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3488
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3489
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3490
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3491
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3492
 * Event handler for Permission Name Popup Menu
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3493
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3494
class PermissionNameMenuListener implements ItemListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3495
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3496
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3497
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3498
    PermissionNameMenuListener(ToolDialog td) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3499
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3500
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3501
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3502
    public void itemStateChanged(ItemEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3503
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3504
        Choice names = (Choice)td.getComponent(td.PD_NAME_CHOICE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3505
        names.getAccessibleContext().setAccessibleName(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3506
            PolicyTool.splitToWords((String)e.getItem()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3507
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3508
        if (((String)e.getItem()).indexOf(td.PERM_NAME) != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3509
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3510
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3511
        TextField tf = (TextField)td.getComponent(td.PD_NAME_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3512
        tf.setText((String)e.getItem());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3513
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3514
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3515
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3516
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3517
 * Event handler for Permission Actions Popup Menu
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3518
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3519
class PermissionActionsMenuListener implements ItemListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3520
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3521
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3522
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3523
    PermissionActionsMenuListener(ToolDialog td) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3524
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3525
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3526
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3527
    public void itemStateChanged(ItemEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3528
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3529
        Choice actions = (Choice)td.getComponent(td.PD_ACTIONS_CHOICE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3530
        actions.getAccessibleContext().setAccessibleName((String)e.getItem());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3531
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3532
        if (((String)e.getItem()).indexOf(td.PERM_ACTIONS) != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3533
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3534
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3535
        TextField tf = (TextField)td.getComponent(td.PD_ACTIONS_TEXTFIELD);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3536
        if (tf.getText() == null || tf.getText().equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3537
            tf.setText((String)e.getItem());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3538
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3539
            if (tf.getText().indexOf((String)e.getItem()) == -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3540
                tf.setText(tf.getText() + ", " + (String)e.getItem());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3541
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3542
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3543
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3544
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3545
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3546
 * Event handler for all the children dialogs/windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3547
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3548
class ChildWindowListener implements WindowListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3549
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3550
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3551
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3552
    ChildWindowListener(ToolDialog td) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3553
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3554
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3555
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3556
    public void windowOpened(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3557
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3558
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3559
    public void windowClosing(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3560
        // same as pressing the "cancel" button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3561
        td.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3562
        td.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3563
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3564
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3565
    public void windowClosed(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3566
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3567
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3568
    public void windowIconified(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3569
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3570
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3571
    public void windowDeiconified(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3572
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3573
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3574
    public void windowActivated(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3575
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3576
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3577
    public void windowDeactivated(WindowEvent we) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3578
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3579
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3580
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3581
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3582
 * Event handler for CancelButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3583
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3584
class CancelButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3585
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3586
    private ToolDialog td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3587
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3588
    CancelButtonListener(ToolDialog td) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3589
        this.td = td;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3590
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3591
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3592
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3593
        td.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3594
        td.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3595
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3596
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3597
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3598
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3599
 * Event handler for ErrorOKButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3600
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3601
class ErrorOKButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3602
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3603
    private ToolDialog ed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3604
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3605
    ErrorOKButtonListener(ToolDialog ed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3606
        this.ed = ed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3607
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3608
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3609
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3610
        ed.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3611
        ed.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3612
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3613
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3614
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3615
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3616
 * Event handler for StatusOKButton button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3617
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3618
class StatusOKButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3619
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3620
    private ToolDialog sd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3621
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3622
    StatusOKButtonListener(ToolDialog sd) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3623
        this.sd = sd;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3624
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3625
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3626
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3627
        sd.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3628
        sd.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3629
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3630
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3631
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3632
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3633
 * Event handler for UserSaveYes button
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3634
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3635
class UserSaveYesButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3636
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3637
    private ToolDialog us;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3638
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3639
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3640
    private int select;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3641
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3642
    UserSaveYesButtonListener(ToolDialog us, PolicyTool tool,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3643
                        ToolWindow tw, int select) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3644
        this.us = us;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3645
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3646
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3647
        this.select = select;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3648
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3649
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3650
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3651
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3652
        // first get rid of the window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3653
        us.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3654
        us.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3655
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3656
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3657
            String filename = ((TextField)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3658
                    tw.getComponent(tw.MW_FILENAME_TEXTFIELD)).getText();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3659
            if (filename == null || filename.equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3660
                us.displaySaveAsDialog(select);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3661
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3662
                // the above dialog will continue with the originally
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3663
                // requested command if necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3664
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3665
                // save the policy entries to a file
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3666
                tool.savePolicy(filename);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3667
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3668
                // display status
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3669
                MessageFormat form = new MessageFormat
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3670
                        (PolicyTool.rb.getString
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3671
                        ("Policy successfully written to filename"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3672
                Object[] source = {filename};
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3673
                tw.displayStatusDialog(null, form.format(source));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3674
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3675
                // now continue with the originally requested command
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3676
                // (QUIT, NEW, or OPEN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3677
                us.userSaveContinue(tool, tw, us, select);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3678
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3679
        } catch (Exception ee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3680
            // error -- just report it and bail
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3681
            tw.displayErrorDialog(null, ee);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3682
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3683
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3684
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3685
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3686
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3687
 * Event handler for UserSaveNoButton
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3688
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3689
class UserSaveNoButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3690
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3691
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3692
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3693
    private ToolDialog us;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3694
    private int select;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3695
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3696
    UserSaveNoButtonListener(ToolDialog us, PolicyTool tool,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3697
                        ToolWindow tw, int select) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3698
        this.us = us;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3699
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3700
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3701
        this.select = select;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3702
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3703
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3704
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3705
        us.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3706
        us.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3707
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3708
        // now continue with the originally requested command
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3709
        // (QUIT, NEW, or OPEN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3710
        us.userSaveContinue(tool, tw, us, select);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3711
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3712
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3713
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3714
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3715
 * Event handler for UserSaveCancelButton
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3716
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3717
class UserSaveCancelButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3718
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3719
    private ToolDialog us;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3720
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3721
    UserSaveCancelButtonListener(ToolDialog us) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3722
        this.us = us;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3723
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3724
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3725
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3726
        us.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3727
        us.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3728
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3729
        // do NOT continue with the originally requested command
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3730
        // (QUIT, NEW, or OPEN)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3731
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3732
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3733
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3734
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3735
 * Event handler for ConfirmRemovePolicyEntryOKButtonListener
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3736
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3737
class ConfirmRemovePolicyEntryOKButtonListener implements ActionListener {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3738
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3739
    private PolicyTool tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3740
    private ToolWindow tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3741
    private ToolDialog us;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3742
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3743
    ConfirmRemovePolicyEntryOKButtonListener(PolicyTool tool,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3744
                                ToolWindow tw, ToolDialog us) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3745
        this.tool = tool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3746
        this.tw = tw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3747
        this.us = us;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3748
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3749
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3750
    public void actionPerformed(ActionEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3751
        // remove the entry
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3752
        List list = (List)tw.getComponent(tw.MW_POLICY_LIST);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3753
        int index = list.getSelectedIndex();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3754
        PolicyEntry entries[] = tool.getEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3755
        tool.removeEntry(entries[index]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3756
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3757
        // redraw the window listing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3758
        list = new List(40, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3759
        list.addActionListener(new PolicyListListener(tool, tw));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3760
        entries = tool.getEntry();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3761
        if (entries != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3762
                for (int i = 0; i < entries.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3763
                    list.add(entries[i].headerToString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3764
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3765
        tw.replacePolicyList(list);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3766
        us.setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3767
        us.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3768
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3769
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3770
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3771
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3772
 * Just a special name, so that the codes dealing with this exception knows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3773
 * it's special, and does not pop out a warning box.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3774
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3775
class NoDisplayException extends RuntimeException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3776
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3777
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3778
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3779
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3780
 * This is a java.awt.List that bind an Object to each String it holds.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3781
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3782
class TaggedList extends List {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3783
    private java.util.List<Object> data = new LinkedList<Object>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3784
    public TaggedList(int i, boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3785
        super(i, b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3786
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3787
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3788
    public Object getObject(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3789
        return data.get(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3790
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3791
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3792
    @Override @Deprecated public void add(String string) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3793
        throw new AssertionError("should not call add in TaggedList");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3794
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3795
    public void addTaggedItem(String string, Object object) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3796
        super.add(string);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3797
        data.add(object);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3798
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3799
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3800
    @Override @Deprecated public void replaceItem(String string, int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3801
        throw new AssertionError("should not call replaceItem in TaggedList");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3802
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3803
    public void replaceTaggedItem(String string, Object object, int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3804
        super.replaceItem(string, index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3805
        data.set(index, object);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3806
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3807
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3808
    @Override @Deprecated public void remove(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3809
        // Cannot throw AssertionError, because replaceItem() call remove() internally
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3810
        super.remove(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3811
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3812
    public void removeTaggedItem(int index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3813
        super.remove(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3814
        data.remove(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3815
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3816
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3817
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3818
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3819
 * Convenience Principal Classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3820
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3821
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3822
class Prin {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3823
    public final String CLASS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3824
    public final String FULL_CLASS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3825
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3826
    public Prin(String clazz, String fullClass) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3827
        this.CLASS = clazz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3828
        this.FULL_CLASS = fullClass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3829
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3830
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3831
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3832
class KrbPrin extends Prin {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3833
    public KrbPrin() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3834
        super("KerberosPrincipal",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3835
                "javax.security.auth.kerberos.KerberosPrincipal");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3836
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3837
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3838
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3839
class X500Prin extends Prin {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3840
    public X500Prin() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3841
        super("X500Principal",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3842
                "javax.security.auth.x500.X500Principal");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3843
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3844
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3845
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3846
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3847
 * Convenience Permission Classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3848
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3849
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3850
class Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3851
    public final String CLASS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3852
    public final String FULL_CLASS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3853
    public final String[] TARGETS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3854
    public final String[] ACTIONS;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3855
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3856
    public Perm(String clazz, String fullClass,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3857
                String[] targets, String[] actions) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3858
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3859
        this.CLASS = clazz;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3860
        this.FULL_CLASS = fullClass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3861
        this.TARGETS = targets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3862
        this.ACTIONS = actions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3863
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3864
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3865
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3866
class AllPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3867
    public AllPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3868
        super("AllPermission", "java.security.AllPermission", null, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3869
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3870
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3871
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3872
class AudioPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3873
    public AudioPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3874
        super("AudioPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3875
        "javax.sound.sampled.AudioPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3876
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3877
                "play",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3878
                "record"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3879
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3880
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3881
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3882
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3883
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3884
class AuthPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3885
    public AuthPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3886
    super("AuthPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3887
        "javax.security.auth.AuthPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3888
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3889
                "doAs",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3890
                "doAsPrivileged",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3891
                "getSubject",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3892
                "getSubjectFromDomainCombiner",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3893
                "setReadOnly",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3894
                "modifyPrincipals",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3895
                "modifyPublicCredentials",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3896
                "modifyPrivateCredentials",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3897
                "refreshCredential",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3898
                "destroyCredential",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3899
                "createLoginContext.<" + PolicyTool.rb.getString("name") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3900
                "getLoginConfiguration",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3901
                "setLoginConfiguration",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3902
                "createLoginConfiguration.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3903
                        PolicyTool.rb.getString("configuration type") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3904
                "refreshLoginConfiguration"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3905
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3906
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3907
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3908
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3909
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3910
class AWTPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3911
    public AWTPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3912
    super("AWTPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3913
        "java.awt.AWTPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3914
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3915
                "accessClipboard",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3916
                "accessEventQueue",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3917
                "accessSystemTray",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3918
                "createRobot",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3919
                "fullScreenExclusive",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3920
                "listenToAllAWTEvents",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3921
                "readDisplayPixels",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3922
                "replaceKeyboardFocusManager",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3923
                "setAppletStub",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3924
                "setWindowAlwaysOnTop",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3925
                "showWindowWithoutWarningBanner",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3926
                "toolkitModality",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3927
                "watchMousePointer"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3928
        },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3929
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3930
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3931
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3932
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3933
class DelegationPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3934
    public DelegationPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3935
    super("DelegationPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3936
        "javax.security.auth.kerberos.DelegationPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3937
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3938
                // allow user input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3939
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3940
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3941
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3942
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3943
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3944
class FilePerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3945
    public FilePerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3946
    super("FilePermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3947
        "java.io.FilePermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3948
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3949
                "<<ALL FILES>>"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3950
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3951
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3952
                "read",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3953
                "write",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3954
                "delete",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3955
                "execute"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3956
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3957
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3958
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3959
3482
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  3960
class InqSecContextPerm extends Perm {
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  3961
    public InqSecContextPerm() {
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  3962
    super("InquireSecContextPermission",
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  3963
        "com.sun.security.jgss.InquireSecContextPermission",
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  3964
        new String[]    {
3483
a16fce1820ef 6821190: more InquireType values for ExtendedGSSContext
weijun
parents: 3482
diff changeset
  3965
                "KRB5_GET_SESSION_KEY",
a16fce1820ef 6821190: more InquireType values for ExtendedGSSContext
weijun
parents: 3482
diff changeset
  3966
                "KRB5_GET_TKT_FLAGS",
a16fce1820ef 6821190: more InquireType values for ExtendedGSSContext
weijun
parents: 3482
diff changeset
  3967
                "KRB5_GET_AUTHZ_DATA",
a16fce1820ef 6821190: more InquireType values for ExtendedGSSContext
weijun
parents: 3482
diff changeset
  3968
                "KRB5_GET_AUTHTIME"
3482
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  3969
                },
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  3970
        null);
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  3971
    }
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  3972
}
4aaa66ce712d 6710360: export Kerberos session key to applications
weijun
parents: 715
diff changeset
  3973
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3974
class LogPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3975
    public LogPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3976
    super("LoggingPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3977
        "java.util.logging.LoggingPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3978
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3979
                "control"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3980
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3981
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3982
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3983
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3984
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3985
class MgmtPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3986
    public MgmtPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3987
    super("ManagementPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3988
        "java.lang.management.ManagementPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3989
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3990
                "control",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3991
                "monitor"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3992
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3993
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3994
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3995
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3996
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3997
class MBeanPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3998
    public MBeanPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  3999
    super("MBeanPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4000
        "javax.management.MBeanPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4001
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4002
                // allow user input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4003
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4004
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4005
                "addNotificationListener",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4006
                "getAttribute",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4007
                "getClassLoader",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4008
                "getClassLoaderFor",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4009
                "getClassLoaderRepository",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4010
                "getDomains",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4011
                "getMBeanInfo",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4012
                "getObjectInstance",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4013
                "instantiate",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4014
                "invoke",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4015
                "isInstanceOf",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4016
                "queryMBeans",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4017
                "queryNames",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4018
                "registerMBean",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4019
                "removeNotificationListener",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4020
                "setAttribute",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4021
                "unregisterMBean"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4022
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4023
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4024
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4025
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4026
class MBeanSvrPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4027
    public MBeanSvrPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4028
    super("MBeanServerPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4029
        "javax.management.MBeanServerPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4030
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4031
                "createMBeanServer",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4032
                "findMBeanServer",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4033
                "newMBeanServer",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4034
                "releaseMBeanServer"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4035
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4036
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4037
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4038
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4039
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4040
class MBeanTrustPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4041
    public MBeanTrustPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4042
    super("MBeanTrustPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4043
        "javax.management.MBeanTrustPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4044
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4045
                "register"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4046
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4047
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4048
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4049
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4050
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4051
class NetPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4052
    public NetPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4053
    super("NetPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4054
        "java.net.NetPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4055
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4056
                "setDefaultAuthenticator",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4057
                "requestPasswordAuthentication",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4058
                "specifyStreamHandler",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4059
                "setProxySelector",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4060
                "getProxySelector",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4061
                "setCookieHandler",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4062
                "getCookieHandler",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4063
                "setResponseCache",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4064
                "getResponseCache"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4065
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4066
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4067
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4068
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4069
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4070
class PrivCredPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4071
    public PrivCredPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4072
    super("PrivateCredentialPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4073
        "javax.security.auth.PrivateCredentialPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4074
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4075
                // allow user input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4076
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4077
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4078
                "read"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4079
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4080
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4081
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4082
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4083
class PropPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4084
    public PropPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4085
    super("PropertyPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4086
        "java.util.PropertyPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4087
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4088
                // allow user input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4089
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4090
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4091
                "read",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4092
                "write"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4093
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4094
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4095
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4096
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4097
class ReflectPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4098
    public ReflectPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4099
    super("ReflectPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4100
        "java.lang.reflect.ReflectPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4101
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4102
                "suppressAccessChecks"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4103
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4104
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4106
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4107
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4108
class RuntimePerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4109
    public RuntimePerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4110
    super("RuntimePermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4111
        "java.lang.RuntimePermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4112
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4113
                "createClassLoader",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4114
                "getClassLoader",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4115
                "setContextClassLoader",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4116
                "enableContextClassLoaderOverride",
705
1db8adb3ea95 6711509: PolicyTool is misspelling Runtime permission - 'setSecurityManager' entry in the policy file
weijun
parents: 2
diff changeset
  4117
                "setSecurityManager",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4118
                "createSecurityManager",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4119
                "getenv.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4120
                    PolicyTool.rb.getString("environment variable name") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4121
                "exitVM",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4122
                "shutdownHooks",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4123
                "setFactory",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4124
                "setIO",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4125
                "modifyThread",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4126
                "stopThread",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4127
                "modifyThreadGroup",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4128
                "getProtectionDomain",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4129
                "readFileDescriptor",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4130
                "writeFileDescriptor",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4131
                "loadLibrary.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4132
                    PolicyTool.rb.getString("library name") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4133
                "accessClassInPackage.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4134
                    PolicyTool.rb.getString("package name")+">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4135
                "defineClassInPackage.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4136
                    PolicyTool.rb.getString("package name")+">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4137
                "accessDeclaredMembers",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4138
                "queuePrintJob",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4139
                "getStackTrace",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4140
                "setDefaultUncaughtExceptionHandler",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4141
                "preferences",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4142
                "usePolicy",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4143
                // "inheritedChannel"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4144
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4145
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4146
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4147
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4148
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4149
class SecurityPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4150
    public SecurityPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4151
    super("SecurityPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4152
        "java.security.SecurityPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4153
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4154
                "createAccessControlContext",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4155
                "getDomainCombiner",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4156
                "getPolicy",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4157
                "setPolicy",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4158
                "createPolicy.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4159
                    PolicyTool.rb.getString("policy type") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4160
                "getProperty.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4161
                    PolicyTool.rb.getString("property name") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4162
                "setProperty.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4163
                    PolicyTool.rb.getString("property name") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4164
                "insertProvider.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4165
                    PolicyTool.rb.getString("provider name") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4166
                "removeProvider.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4167
                    PolicyTool.rb.getString("provider name") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4168
                //"setSystemScope",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4169
                //"setIdentityPublicKey",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4170
                //"setIdentityInfo",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4171
                //"addIdentityCertificate",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4172
                //"removeIdentityCertificate",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4173
                //"printIdentity",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4174
                "clearProviderProperties.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4175
                    PolicyTool.rb.getString("provider name") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4176
                "putProviderProperty.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4177
                    PolicyTool.rb.getString("provider name") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4178
                "removeProviderProperty.<" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4179
                    PolicyTool.rb.getString("provider name") + ">",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4180
                //"getSignerPrivateKey",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4181
                //"setSignerKeyPair"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4182
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4183
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4185
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4186
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4187
class SerialPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4188
    public SerialPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4189
    super("SerializablePermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4190
        "java.io.SerializablePermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4191
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4192
                "enableSubclassImplementation",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4193
                "enableSubstitution"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4194
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4195
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4197
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4198
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4199
class ServicePerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4200
    public ServicePerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4201
    super("ServicePermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4202
        "javax.security.auth.kerberos.ServicePermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4203
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4204
                // allow user input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4205
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4206
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4207
                "initiate",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4208
                "accept"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4209
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4211
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4212
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4213
class SocketPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4214
    public SocketPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4215
    super("SocketPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4216
        "java.net.SocketPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4217
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4218
                // allow user input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4219
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4220
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4221
                "accept",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4222
                "connect",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4223
                "listen",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4224
                "resolve"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4225
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4226
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4227
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4228
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4229
class SQLPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4230
    public SQLPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4231
    super("SQLPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4232
        "java.sql.SQLPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4233
        new String[]    {
6542
155856185c1b 6845220: Need to update Policytool for Rowset 1.1 and JDBC 4.1 MR added permissions
weijun
parents: 5627
diff changeset
  4234
                "setLog",
155856185c1b 6845220: Need to update Policytool for Rowset 1.1 and JDBC 4.1 MR added permissions
weijun
parents: 5627
diff changeset
  4235
                "callAbort",
155856185c1b 6845220: Need to update Policytool for Rowset 1.1 and JDBC 4.1 MR added permissions
weijun
parents: 5627
diff changeset
  4236
                "setSyncFactory",
155856185c1b 6845220: Need to update Policytool for Rowset 1.1 and JDBC 4.1 MR added permissions
weijun
parents: 5627
diff changeset
  4237
                "setNetworkTimeout",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4238
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4239
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4240
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4241
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4242
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4243
class SSLPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4244
    public SSLPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4245
    super("SSLPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4246
        "javax.net.ssl.SSLPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4247
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4248
                "setHostnameVerifier",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4249
                "getSSLSessionContext"
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4250
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4251
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4252
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4253
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4254
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4255
class SubjDelegPerm extends Perm {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4256
    public SubjDelegPerm() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4257
    super("SubjectDelegationPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4258
        "javax.management.remote.SubjectDelegationPermission",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4259
        new String[]    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4260
                // allow user input
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4261
                },
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4262
        null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4263
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  4264
}