public class X509IssuerSerial
extends java.lang.Object
KeyProviderImplX509Data| Modifier and Type | Field and Description |
|---|---|
protected Name |
issuerName_
The issuer distinguished name of a X.509 certificate.
|
protected java.math.BigInteger |
serialNumber_
The serial number of a X.509 certificate.
|
| Constructor and Description |
|---|
X509IssuerSerial(java.lang.String issuerRFC2253Name,
java.math.BigInteger serialNumber)
Standard constructor.
|
| Modifier and Type | Method and Description |
|---|---|
java.security.Principal |
getIssuerName()
Gets the issuer distinguished name of a X.509 certificate.
|
java.lang.String |
getIssuerNameString()
Gets the string representation of a Issuer Distinguished Name as specified in section 4.4.4 of
XML-Signature Syntax and Processing.
|
java.math.BigInteger |
getSerialNumber()
Gets the serial number of a X.509 certificate.
|
protected Name issuerName_
protected java.math.BigInteger serialNumber_
public X509IssuerSerial(java.lang.String issuerRFC2253Name,
java.math.BigInteger serialNumber)
throws KeyProviderException
issuerRFC2253Name - A string representing the subject distinguished name of a X.509 certificate,
and composed as specified by section 4.4.4 of XML-Signature Syntax and Processing.
Must not be null.serialNumber - The serial number of a X.509 certificate. Must not be null.KeyProviderException - if the specified issuer name string cannot be parsed.public java.security.Principal getIssuerName()
public java.lang.String getIssuerNameString()
public java.math.BigInteger getSerialNumber()