Interface ICertificate
public interface ICertificate
This interface represents a Certificate record as stored in the Evidence Store. This is a read only wrapper and is used for all client side purposes.
-
Method Summary
Modifier and TypeMethodDescriptiongetCA()
Gets the name of the Certificate Authority that issued this Certificate.Gets the certificate value for this Certificate.getId()
Gets the id value for this Certificate.Gets the identityContext value for this Certificate.Gets the userName value for this Certificate.boolean
isValid()
Gets the valid value for this Certificate.
-
Method Details
-
getId
Gets the id value for this Certificate.- Returns:
- id
- Throws:
oracle.bpel.services.workflow.evidence.EvidenceServiceException
-
getCA
Gets the name of the Certificate Authority that issued this Certificate.- Returns:
- name
- Throws:
oracle.bpel.services.workflow.evidence.EvidenceServiceException
-
getUserName
Gets the userName value for this Certificate.- Returns:
- userName
- Throws:
oracle.bpel.services.workflow.evidence.EvidenceServiceException
-
getIdentityContext
Gets the identityContext value for this Certificate.- Returns:
- identityContext
- Throws:
oracle.bpel.services.workflow.evidence.EvidenceServiceException
-
getCertificate
Gets the certificate value for this Certificate.- Returns:
- certificate
- Throws:
oracle.bpel.services.workflow.evidence.EvidenceServiceException
-
isValid
boolean isValid() throws oracle.bpel.services.workflow.evidence.EvidenceServiceExceptionGets the valid value for this Certificate.- Returns:
- valid
- Throws:
oracle.bpel.services.workflow.evidence.EvidenceServiceException
-