Package | Description |
---|---|
oracle.okv.kmip |
This package contains enum class for KMIP tags, tag enumerations, and types.
|
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 |
---|---|
void |
OKVConnection.close()
Closes the connection by using the injected OKVPrimitiveConnection
object.
|
byte[] |
OKVConnection.okvConnSendRecvBytes(byte[] bytes)
API sends and receives a byte array to and from the Oracle Key
Vault server by using the injected OKVPrimitiveConnection object.
|
void |
OKVPrimitiveConnection.open()
Opens the connection to the Oracle Key Vault server if
the connection has not yet been opened.
|
void |
OKVSSLConnection.open()
Opens the connection to the Oracle Key Vault server if
it is not yet already open.
|
void |
OKVConnection.open()
Opens a connection by using the injected OKVPrimitiveConnection object.
|
byte[] |
OKVConnection.recv()
Receives a byte array from the Oracle Key Vault server by using the
injected OKVPrimitiveConnection object.
|
void |
OKVConnection.send(byte[] bytes)
Sends a byte array to the Oracle Key Vault server by using the
injected OKVPrimitiveConnection object.
|
Constructor and Description |
---|
OKVSSLConnection(java.lang.String serverIP,
int serverPort,
java.lang.String walletLoc,
oracle.okv.utils.OKVSecureString psd) |
Modifier and Type | Method and Description |
---|---|
void |
OKVService.okvConnect()
API to begin the session by creating a SSL connection
to the Oracle Key Vault server.
|
void |
OKVService.okvDisconnect()
API to end the Oracle Key Vault server session and disconnect the SSL
connection between the endpoint program and the Oracle Key Vault
server.
|