jdk/src/share/classes/sun/security/x509/CertificatePoliciesExtension.java
author jjg
Mon, 15 Aug 2011 11:48:20 -0700
changeset 10336 0bb1999251f8
parent 5506 202f599c92aa
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) 2000, 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.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import sun.security.util.DerValue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import sun.security.util.DerOutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * This class defines the certificate policies extension which specifies the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * policies under which the certificate has been issued
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * and the purposes for which the certificate may be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * Applications with specific policy requirements are expected to have a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * list of those policies which they will accept and to compare the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * policy OIDs in the certificate to that list.  If this extension is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * critical, the path validation software MUST be able to interpret this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * extension (including the optional qualifier), or MUST reject the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * certificate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Optional qualifiers are not supported in this implementation, as they are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * not recommended by RFC2459.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * The ASN.1 syntax for this is (IMPLICIT tagging is defined in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * module definition):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * id-ce-certificatePolicies OBJECT IDENTIFIER ::=  { id-ce 32 }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * certificatePolicies ::= SEQUENCE SIZE (1..MAX) OF PolicyInformation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * PolicyInformation ::= SEQUENCE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *      policyIdentifier   CertPolicyId,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *      policyQualifiers   SEQUENCE SIZE (1..MAX) OF
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *                              PolicyQualifierInfo OPTIONAL }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * CertPolicyId ::= OBJECT IDENTIFIER
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * @author Anne Anderson
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * @since       1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * @see Extension
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * @see CertAttrSet
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
public class CertificatePoliciesExtension extends Extension
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
implements CertAttrSet<String> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * Identifier for this attribute, to be used with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * get, set, delete methods of Certificate, x509 type.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    public static final String IDENT = "x509.info.extensions.CertificatePolicies";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * Attribute names.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    public static final String NAME = "CertificatePolicies";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    public static final String POLICIES = "policies";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * List of PolicyInformation for this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    private List<PolicyInformation> certPolicies;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    // Encode this extension value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    private void encodeThis() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        if (certPolicies == null || certPolicies.isEmpty()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            this.extensionValue = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            DerOutputStream os = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
            DerOutputStream tmp = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            for (PolicyInformation info : certPolicies) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                info.encode(tmp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            os.write(DerValue.tag_Sequence, tmp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            this.extensionValue = os.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        }
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 CertificatePoliciesExtension object from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * a List of PolicyInformation; the criticality is set to false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * @param certPolicies the List of PolicyInformation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    public CertificatePoliciesExtension(List<PolicyInformation> certPolicies)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        this(Boolean.FALSE, certPolicies);
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
     * Create a CertificatePoliciesExtension object from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * a List of PolicyInformation with specified criticality.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @param critical true if the extension is to be treated as critical.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * @param certPolicies the List of PolicyInformation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    public CertificatePoliciesExtension(Boolean critical,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            List<PolicyInformation> certPolicies) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        this.certPolicies = certPolicies;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        this.extensionId = PKIXExtensions.CertificatePolicies_Id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        this.critical = critical.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        encodeThis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * Create the extension from its DER encoded value and criticality.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @param critical true if the extension is to be treated as critical.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * @param value an array of DER encoded bytes of the actual value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * @exception ClassCastException if value is not an array of bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @exception IOException on error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    public CertificatePoliciesExtension(Boolean critical, Object value)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        this.extensionId = PKIXExtensions.CertificatePolicies_Id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        this.critical = critical.booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        this.extensionValue = (byte[]) value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        DerValue val = new DerValue(this.extensionValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        if (val.tag != DerValue.tag_Sequence) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            throw new IOException("Invalid encoding for " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                                   "CertificatePoliciesExtension.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        certPolicies = new ArrayList<PolicyInformation>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        while (val.data.available() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            DerValue seq = val.data.getDerValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            PolicyInformation policy = new PolicyInformation(seq);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            certPolicies.add(policy);
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
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * Return the extension as user readable string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        if (certPolicies == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            return "";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        StringBuilder sb = new StringBuilder(super.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        sb.append("CertificatePolicies [\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        for (PolicyInformation info : certPolicies) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            sb.append(info.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        sb.append("]\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        return sb.toString();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * Write the extension to the DerOutputStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @param out the DerOutputStream to write the extension to.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @exception IOException on encoding errors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    public void encode(OutputStream out) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        DerOutputStream tmp = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        if (extensionValue == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
          extensionId = PKIXExtensions.CertificatePolicies_Id;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
          critical = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
          encodeThis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        super.encode(tmp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        out.write(tmp.toByteArray());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * Set the attribute value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     */
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   192
    @SuppressWarnings("unchecked") // Checked with an instanceof check
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    public void set(String name, Object obj) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        if (name.equalsIgnoreCase(POLICIES)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            if (!(obj instanceof List)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
                throw new IOException("Attribute value should be of type List.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            certPolicies = (List<PolicyInformation>)obj;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
          throw new IOException("Attribute name [" + name +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
                                "] not recognized by " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
                                "CertAttrSet:CertificatePoliciesExtension.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        encodeThis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * Get the attribute value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     */
10336
0bb1999251f8 7064075: Security libraries don't build with javac -Xlint:all,-deprecation -Werror
jjg
parents: 5506
diff changeset
   210
    public List<PolicyInformation> get(String name) throws IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        if (name.equalsIgnoreCase(POLICIES)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            //XXXX May want to consider cloning this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            return certPolicies;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
          throw new IOException("Attribute name [" + name +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                                "] not recognized by " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                                "CertAttrSet:CertificatePoliciesExtension.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * Delete the attribute value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    public void delete(String name) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        if (name.equalsIgnoreCase(POLICIES)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            certPolicies = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
          throw new IOException("Attribute name [" + name +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
                                "] not recognized by " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                                "CertAttrSet:CertificatePoliciesExtension.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        encodeThis();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * Return an enumeration of names of attributes existing within this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * attribute.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    public Enumeration<String> getElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        AttributeNameEnumeration elements = new AttributeNameEnumeration();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        elements.addElement(POLICIES);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        return (elements.elements());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * Return the name of this attribute.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    public String getName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        return (NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
}