Interface OciSignatureData
-
@Deprecated(since="2.5.0", forRemoval=true) public interface OciSignatureData
Deprecated, for removal: This API element is subject to removal in a future version.OCI SDK insteadwData needed to sign requests.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description static OciSignatureData
create(String keyId, RSAPrivateKey privateKey)
Deprecated, for removal: This API element is subject to removal in a future version.Create a new instance.String
keyId()
Deprecated, for removal: This API element is subject to removal in a future version.Key ID to use.RSAPrivateKey
privateKey()
Deprecated, for removal: This API element is subject to removal in a future version.Private key to use to generate signatures.
-
-
-
Method Detail
-
keyId
String keyId()
Deprecated, for removal: This API element is subject to removal in a future version.Key ID to use.- Returns:
- key ID
-
privateKey
RSAPrivateKey privateKey()
Deprecated, for removal: This API element is subject to removal in a future version.Private key to use to generate signatures.- Returns:
- private key
-
create
static OciSignatureData create(String keyId, RSAPrivateKey privateKey)
Deprecated, for removal: This API element is subject to removal in a future version.Create a new instance.- Parameters:
keyId
- key IDprivateKey
- private key- Returns:
- a new instance of signature data
-
-