Skip navigation links

Oracle Application Server Certificate Authority Java API Reference
10g (10.1.4.0.1)

B15990-01


oracle.security.oca.policy
Class OCAX509Certificate

java.lang.Object
  extended byoracle.security.oca.policy.OCAX509Certificate


public final class OCAX509Certificate
extends java.lang.Object

This class provides the details of a certificate, like subject DN etc.

Since:
9.0.4
See Also:
OCAPolicyRequest.getTrustPoints()

Method Summary
 java.lang.String getIssuer()
          Gets the subject DN of the Issuer of the trust point.
 java.lang.String getKeyAlgorithm()
          Gets the key algorithm of the certificate's public key.
 java.util.Date getNotAfterDate()
          Gets the validity end date of the trust point.
 java.util.Date getNotBeforeDate()
          Gets the validity begin date of the trust point.
 byte[] getPublicKey()
          Gets the public key of the certificate.
 java.math.BigInteger getSerialNo()
          Gets the serial number of the trust point's certificate.
 java.lang.String getSubject()
          Gets the subject DN of the trust point.

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Method Detail

getSubject

public java.lang.String getSubject()
Gets the subject DN of the trust point.
Returns:
The subject DN of the certificate.
Since:
9.0.4

getIssuer

public java.lang.String getIssuer()
Gets the subject DN of the Issuer of the trust point.
Returns:
The subject DN of the issuer of the certificate.
Since:
9.0.4

getSerialNo

public java.math.BigInteger getSerialNo()
Gets the serial number of the trust point's certificate.
Returns:
The serial number of the certificate.
Since:
9.0.4

getNotBeforeDate

public java.util.Date getNotBeforeDate()
Gets the validity begin date of the trust point.
Returns:
The validity start date of the certificate.
Since:
9.0.4

getNotAfterDate

public java.util.Date getNotAfterDate()
Gets the validity end date of the trust point.
Returns:
The validity end date of the certificate.
Since:
9.0.4

getKeyAlgorithm

public java.lang.String getKeyAlgorithm()
Gets the key algorithm of the certificate's public key.
Returns:
The algorithm of the certificate's keys.
Since:
9.0.4

getPublicKey

public byte[] getPublicKey()
Gets the public key of the certificate.
Returns:
The public key of the certificate.
Since:
9.0.4

Skip navigation links

Oracle Application Server Certificate Authority Java API Reference
10g (10.1.4.0.1)

B15990-01


Copyright © 2003, 2006, Oracle. All Rights Reserved.