From 0d18201474499b41daa0f79092691787b63dfb9e Mon Sep 17 00:00:00 2001 From: Brad Nicholes Date: Mon, 10 Jul 2023 18:21:26 -0600 Subject: [PATCH] Fix Java doc errors --- .../safeguard/safeguardjava/ISafeguardA2AContext.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/oneidentity/safeguard/safeguardjava/ISafeguardA2AContext.java b/src/main/java/com/oneidentity/safeguard/safeguardjava/ISafeguardA2AContext.java index c95e1e4..467a44c 100644 --- a/src/main/java/com/oneidentity/safeguard/safeguardjava/ISafeguardA2AContext.java +++ b/src/main/java/com/oneidentity/safeguard/safeguardjava/ISafeguardA2AContext.java @@ -40,7 +40,9 @@ public interface ISafeguardA2AContext * * @param apiKey API key corresponding to the configured account. * @param password Password to set. - * @return + * @throws com.oneidentity.safeguard.safeguardjava.exceptions.ObjectDisposedException + * @throws com.oneidentity.safeguard.safeguardjava.exceptions.SafeguardForJavaException + * @throws com.oneidentity.safeguard.safeguardjava.exceptions.ArgumentException */ void SetPassword(char[] apiKey, char[] password) throws ObjectDisposedException, SafeguardForJavaException, ArgumentException; @@ -73,8 +75,10 @@ public interface ISafeguardA2AContext * @param apiKey API key corresponding to the configured account. * @param privateKey Private key to set. * @param password Password associated with the private key. - * @param keyFormat Format to use when returning private key. - * @return + * @param keyFormat Format to use when returning private key. + * @throws com.oneidentity.safeguard.safeguardjava.exceptions.ObjectDisposedException + * @throws com.oneidentity.safeguard.safeguardjava.exceptions.ArgumentException + * @throws com.oneidentity.safeguard.safeguardjava.exceptions.SafeguardForJavaException */ void SetPrivateKey(char[] apiKey, char[] privateKey, char[] password, KeyFormat keyFormat) throws ObjectDisposedException, ArgumentException, SafeguardForJavaException;