Class EDIPartyName

java.lang.Object
org.mozilla.jss.netscape.security.x509.EDIPartyName
All Implemented Interfaces:
Serializable, GeneralNameInterface

public class EDIPartyName extends Object implements GeneralNameInterface
This class defines the EDIPartyName of the GeneralName choice. The ASN.1 syntax for this is:
 EDIPartyName ::= SEQUENCE {
     nameAssigner  [0]  DirectoryString OPTIONAL,
     partyName     [1]  DirectoryString }
 
Version:
1.2
See Also:
  • Field Details

  • Constructor Details

    • EDIPartyName

      public EDIPartyName(String assignerName, String partyName)
      Create the EDIPartyName object from the specified names.
      Parameters:
      assignerName - the name of the assigner
      partyName - the name of the EDI party.
    • EDIPartyName

      public EDIPartyName(String partyName)
      Create the EDIPartyName object from the specified name.
      Parameters:
      partyName - the name of the EDI party.
    • EDIPartyName

      public EDIPartyName(DerValue derValue) throws IOException
      Create the EDIPartyName object from the passed encoded Der value.
      Parameters:
      derValue - the encoded DER EDIPartyName.
      Throws:
      IOException - on error.
  • Method Details