Enum Class X509SubjectDnFormat

java.lang.Object
java.lang.Enum<X509SubjectDnFormat>
org.apache.syncope.common.lib.types.X509SubjectDnFormat
All Implemented Interfaces:
Serializable, Comparable<X509SubjectDnFormat>, Constable

public enum X509SubjectDnFormat extends Enum<X509SubjectDnFormat>
  • Enum Constant Details

    • DEFAULT

      public static final X509SubjectDnFormat DEFAULT
      Denigrated result of calling certificate.getSubjectDN() method. Javadocs designate this method as "denigrated" for not being portable and/or not being well defined. It is what has been used by CAS for a long time so it remains the default.
    • RFC1779

      public static final X509SubjectDnFormat RFC1779
      RFC 1779 String format of Distinguished Names. Calls X500Principal.getName("RFC1779") which emits a subject DN with the attribute keywords defined in RFC 1779 (CN, L, ST, O, OU, C, STREET). Any other attribute type is emitted as an OID.
    • RFC2253

      public static final X509SubjectDnFormat RFC2253
      RFC 2253 String format of Distinguished Names. Calls X500Principal.getName("RFC2253") which emits a subject DN with the attribute keywords defined in RFC 2253 (CN, L, ST, O, OU, C, STREET, DC, UID). Any other attribute type is emitted as an OID.
    • CANONICAL

      public static final X509SubjectDnFormat CANONICAL
      Canonical String format of Distinguished Names. Calls X500Principal.getName("CANONICAL" which emits a subject DN that starts with RFC 2253 and applies additional canonicalizations described in the javadoc.
  • Method Details

    • values

      public static X509SubjectDnFormat[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static X509SubjectDnFormat valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null