Skip to content

Commit

Permalink
Merge pull request #127 from bnicholesdell/fixjavadocerrors
Browse files Browse the repository at this point in the history
Fix Java doc errors
  • Loading branch information
bnicholesdell authored Jul 11, 2023
2 parents 5724cfd + 0d18201 commit b25bfa8
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit b25bfa8

Please sign in to comment.