Package | Description |
---|---|
oracle.okv.exception |
This package contains all the exceptions thrown by the Java SDK Oracle Key
Vault interface.
|
oracle.okv.response |
This package contains all the response classes whose objects are the return
values of various high-level Oracle Key Vault Java SDK APIs.
|
oracle.okv.service |
This package contains the OKVService class through which all the high level
Java SDK APIs are exposed.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.Integer,OKVResponse> |
OKVBatchResponseException.getBatchItemResponses()
Get the response object of each batch item.
|
Constructor and Description |
---|
OKVBatchResponseException(java.util.Map<java.lang.Integer,OKVResponse> inBatchItemResponses)
Thrown when an error occurs in at least one operation in the
batch.
|
Modifier and Type | Interface and Description |
---|---|
interface |
OKVAttrListResponse
OKVAttrListResponse interface contains the count of attributes
and their names which are retrieved from the response.
|
interface |
OKVAttrsResponse
OKVAttrsResponse interface contains the object's attribute values keyed by
the OKVTag.
|
interface |
OKVCertificateRequestResponse
OKVCertificateRequestResponse interface holds the certificate request value and its type.
|
interface |
OKVCertificateResponse
OKVCertificateResponse interface contains the certificate object related details
like certificate value and certificate type.
|
interface |
OKVKeyResponse
OKVKeyResponse interface holds the key value, key algorithm and key length.
|
interface |
OKVOpaqueDataResponse
OKVOpaqueDataResponse interface holds the opaque data value and its type.
|
interface |
OKVPrivateKeyResponse
OKVPrivateKeyResponse interface holds the key value, key algorithm and key length.
|
interface |
OKVPublicKeyResponse
OKVPublicKeyResponse interface holds the key value, key algorithm and key length.
|
interface |
OKVQueryResponse
OKVQueryResponse interface contains the response attribute specific to
okvQueryCapability() operation.
|
interface |
OKVSecretDataResponse
OKVSecretDataResponse interface holds the secret data value and secret data
type.
|
interface |
OKVTemplateResponse
OKVTemplateResponse interface contains the attributes of the template as list
of TTLVs.
|
interface |
OKVUidListResponse
OKVUidListResponse interface holds the list of uids and count of uids.
|
interface |
OKVUidResponse
OKVUidResponse holds the uid of the object and the response results.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.Integer,OKVResponse> |
OKVBatchResponse.getOKVResultMap()
Gets a map containing the response objects of each operation contained in the
batch operation, keyed by batch item id.
|
Modifier and Type | Method and Description |
---|---|
OKVResponse |
OKVService.okvDeleteAttribute(java.lang.String uid,
java.lang.String attrName,
int attrIndex)
API to perform the KMIP Delete attribute operation on a KMIP object.
|
OKVResponse |
OKVService.okvDestroy(java.lang.String uid)
API to perform the KMIP Destroy operation on a KMIP object.
|
OKVResponse |
OKVService.okvModifyAttribute(java.lang.String uid,
OKVTTLV attr)
API to perform the KMIP Modify attribute operation on a KMIP object.
|
OKVResponse |
OKVService.okvRevoke(java.lang.String uid,
OKVTagEnum reasonCode,
java.lang.String reasonMessage,
java.util.Date compromiseOccurrenceDate)
API to perform the KMIP Revoke operation on a KMIP object.
|