View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.syncope.common.lib.types;
20  
21  public enum X509SubjectDnFormat {
22      /**
23       * Denigrated result of calling certificate.getSubjectDN() method.
24       * Javadocs designate this method as "denigrated" for not being portable and/or not being well defined.
25       * It is what has been used by CAS for a long time so it remains the default.
26       */
27      DEFAULT,
28      /**
29       * RFC 1779 String format of Distinguished Names.
30       * Calls {@code X500Principal.getName("RFC1779")} which emits a subject DN with the attribute keywords defined
31       * in RFC 1779 (CN, L, ST, O, OU, C, STREET). Any other attribute type is emitted as an OID.
32       */
33      RFC1779,
34      /**
35       * RFC 2253 String format of Distinguished Names.
36       * Calls {@code X500Principal.getName("RFC2253")} which emits a subject DN with the attribute keywords defined in
37       * RFC 2253 (CN, L, ST, O, OU, C, STREET, DC, UID). Any other attribute type is emitted as an OID.
38       */
39      RFC2253,
40      /**
41       * Canonical String format of Distinguished Names.
42       * Calls X500Principal.getName("CANONICAL" which emits a subject DN that starts with RFC 2253 and applies
43       * additional canonicalizations described in the javadoc.
44       */
45      CANONICAL;
46  
47  }