jdk/src/share/classes/sun/security/x509/PolicyConstraintsExtension.java
author jjg
Mon, 15 Aug 2011 11:48:20 -0700
changeset 10336 0bb1999251f8
parent 5506 202f599c92aa
child 25522 10d789df41bb
permissions -rw-r--r--
7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror Reviewed-by: xuelei, mullan Contributed-by: alexandre.boulgakov@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
     2
 * Copyright (c) 1997, 2011, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.security.x509;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.OutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.security.cert.CertificateException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Enumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.Vector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.security.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * This class defines the certificate extension which specifies the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * Policy constraints.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * The policy constraints extension can be used in certificates issued
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * to CAs. The policy constraints extension constrains path validation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * in two ways. It can be used to prohibit policy mapping or require
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * that each certificate in a path contain an acceptable policy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * identifier.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * The ASN.1 syntax for this is (IMPLICIT tagging is defined in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * module definition):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * PolicyConstraints ::= SEQUENCE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *     requireExplicitPolicy [0] SkipCerts OPTIONAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *     inhibitPolicyMapping  [1] SkipCerts OPTIONAL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * SkipCerts ::= INTEGER (0..MAX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * @author Amit Kapoor
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * @author Hemma Prafullchandra
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * @see Extension
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * @see CertAttrSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
public class PolicyConstraintsExtension extends Extension
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
implements CertAttrSet<String> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * Identifier for this attribute, to be used with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     * get, set, delete methods of Certificate, x509 type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    public static final String IDENT = "x509.info.extensions.PolicyConstraints";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * Attribute names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    public static final String NAME = "PolicyConstraints";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    public static final String REQUIRE = "require";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    public static final String INHIBIT = "inhibit";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    private static final byte TAG_REQUIRE = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    private static final byte TAG_INHIBIT = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private int require = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    private int inhibit = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    // Encode this extension value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    private void encodeThis() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        if (require == -1 && inhibit == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            this.extensionValue = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        DerOutputStream tagged = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        DerOutputStream seq = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        if (require != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            DerOutputStream tmp = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            tmp.putInteger(require);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                         false, TAG_REQUIRE), tmp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        if (inhibit != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            DerOutputStream tmp = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            tmp.putInteger(inhibit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            tagged.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                         false, TAG_INHIBIT), tmp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        seq.write(DerValue.tag_Sequence, tagged);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        this.extensionValue = seq.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * Create a PolicyConstraintsExtension object with both
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * require explicit policy and inhibit policy mapping. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * extension is marked non-critical.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * @param require require explicit policy (-1 for optional).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * @param inhibit inhibit policy mapping (-1 for optional).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    public PolicyConstraintsExtension(int require, int inhibit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        this(Boolean.FALSE, require, inhibit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * Create a PolicyConstraintsExtension object with specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * criticality and both require explicit policy and inhibit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * policy mapping.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @param critical true if the extension is to be treated as critical.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @param require require explicit policy (-1 for optional).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * @param inhibit inhibit policy mapping (-1 for optional).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    public PolicyConstraintsExtension(Boolean critical, int require, int inhibit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        this.require = require;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        this.inhibit = inhibit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        this.extensionId = PKIXExtensions.PolicyConstraints_Id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        this.critical = critical.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        encodeThis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * Create the extension from its DER encoded value and criticality.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @param critical true if the extension is to be treated as critical.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * @param value an array of DER encoded bytes of the actual value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @exception ClassCastException if value is not an array of bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @exception IOException on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    public PolicyConstraintsExtension(Boolean critical, Object value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        this.extensionId = PKIXExtensions.PolicyConstraints_Id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        this.critical = critical.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        this.extensionValue = (byte[]) value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        DerValue val = new DerValue(this.extensionValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        if (val.tag != DerValue.tag_Sequence) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            throw new IOException("Sequence tag missing for PolicyConstraint.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        DerInputStream in = val.data;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        while (in != null && in.available() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            DerValue next = in.getDerValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            if (next.isContextSpecific(TAG_REQUIRE) && !next.isConstructed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                if (this.require != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                    throw new IOException("Duplicate requireExplicitPolicy" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                          "found in the PolicyConstraintsExtension");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                next.resetTag(DerValue.tag_Integer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                this.require = next.getInteger();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            } else if (next.isContextSpecific(TAG_INHIBIT) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                       !next.isConstructed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                if (this.inhibit != -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                    throw new IOException("Duplicate inhibitPolicyMapping" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                          "found in the PolicyConstraintsExtension");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                next.resetTag(DerValue.tag_Integer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                this.inhibit = next.getInteger();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                throw new IOException("Invalid encoding of PolicyConstraint");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * Return the extension as user readable string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        String s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        s = super.toString() + "PolicyConstraints: [" + "  Require: ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        if (require == -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            s += "unspecified;";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            s += require + ";";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        s += "\tInhibit: ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        if (inhibit == -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            s += "unspecified";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            s += inhibit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        s += " ]\n";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        return s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * Write the extension to the DerOutputStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @param out the DerOutputStream to write the extension to.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @exception IOException on encoding errors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    public void encode(OutputStream out) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        DerOutputStream tmp = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        if (extensionValue == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
          extensionId = PKIXExtensions.PolicyConstraints_Id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
          critical = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
          encodeThis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        super.encode(tmp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        out.write(tmp.toByteArray());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * Set the attribute value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    public void set(String name, Object obj) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        if (!(obj instanceof Integer)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            throw new IOException("Attribute value should be of type Integer.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        if (name.equalsIgnoreCase(REQUIRE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            require = ((Integer)obj).intValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        } else if (name.equalsIgnoreCase(INHIBIT)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            inhibit = ((Integer)obj).intValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
          throw new IOException("Attribute name " + "[" + name + "]" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                                " not recognized by " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                                "CertAttrSet:PolicyConstraints.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        encodeThis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * Get the attribute value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     */
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   234
    public Integer get(String name) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        if (name.equalsIgnoreCase(REQUIRE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
            return new Integer(require);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        } else if (name.equalsIgnoreCase(INHIBIT)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
            return new Integer(inhibit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
          throw new IOException("Attribute name not recognized by " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
                                "CertAttrSet:PolicyConstraints.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * Delete the attribute value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    public void delete(String name) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        if (name.equalsIgnoreCase(REQUIRE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
            require = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        } else if (name.equalsIgnoreCase(INHIBIT)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            inhibit = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
          throw new IOException("Attribute name not recognized by " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                                "CertAttrSet:PolicyConstraints.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        encodeThis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * Return an enumeration of names of attributes existing within this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * attribute.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    public Enumeration<String> getElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        AttributeNameEnumeration elements = new AttributeNameEnumeration();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        elements.addElement(REQUIRE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        elements.addElement(INHIBIT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        return (elements.elements());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * Return the name of this attribute.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    public String getName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        return (NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
}