Package | Description |
---|---|
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 | 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 |
OKVCertResponse
OKVCertResponse 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 |
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.
|
Modifier and Type | Method and Description |
---|---|
OKVUidResponse |
OKVService.okvActivate(java.lang.String uid)
API to perform the KMIP activate operation on a KMIP object.
|
OKVUidResponse |
OKVService.okvAddAttribute(java.lang.String uid,
OKVTTLV attr)
API to perform the KMIP add attribute operation on a KMIP object.
|
OKVUidResponse |
OKVService.okvCreateKey(OKVTagEnum algorithm,
int keyLength,
int usageMask,
OKVTTLV attributeList,
java.lang.String walletName)
API to perform the KMIP create operation for the KMIP symmetric
key object.
|
OKVUidResponse |
OKVService.okvRegCertificate(OKVTagEnum certType,
byte[] certValue,
OKVTagEnum algorithm,
int certLength,
int usageMask,
OKVTTLV attributeList,
java.lang.String walletName)
API to do the KMIP Register operation for the KMIP certificate object.
|
OKVUidResponse |
OKVService.okvRegKey(byte[] keyValue,
OKVTagEnum algorithm,
int keyLength,
int usageMask,
OKVTTLV attributeList,
java.lang.String walletName)
API to perform the KMIP Register operation for the KMIP
symmetric key object.
|
OKVUidResponse |
OKVService.okvRegOpaqueData(OKVTagEnum opaqueType,
byte[] opaqueValue,
OKVTTLV attributeList,
java.lang.String walletName)
API to perform the KMIP Register operation for the KMIP
opaque data object.
|
OKVUidResponse |
OKVService.okvRegSecretData(OKVTagEnum secretDataType,
byte[] secretDataValue,
int usageMask,
OKVTTLV attributeList,
java.lang.String walletName)
API to perform the KMIP register operation for the
KMIP secret data object.
|
OKVUidResponse |
OKVService.okvRegTemplate(OKVTTLV attributeList,
java.lang.String walletName)
API to perform the KMIP register operation for the KMIP
template object.
|
OKVUidResponse |
OKVService.okvRekey(java.lang.String uid,
java.lang.Integer offset,
OKVTTLV attributeList)
API to perform the KMIP rekey operation for the
symmetric key object.
|