Skip to content

Commit 3e9cec7

Browse files
authored
improved javaDocs (#587)
1 parent 129f922 commit 3e9cec7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

access-grant/src/main/java/com/inrupt/client/accessgrant/AccessCredentialVerification.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525

2626
/**
2727
* The response from a verification operation.
28+
* The response contains a list of performed checks, a list of errors and warning that might have occurred.
29+
*
30+
* @see <a href="https://docs.inrupt.com/ess/latest/services/service-access-grant-verifier/">Access Grant Service</a>
2831
*/
2932
public class AccessCredentialVerification {
3033

access-grant/src/main/java/com/inrupt/client/accessgrant/AccessGrantClient.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,8 @@ public CompletionStage<AccessGrant> issue(final URI type, final URI recipient, f
343343
* Verify an access grant or request.
344344
*
345345
* @param credential the credential to verify
346-
* @return the next stage of completion containing the verification result
346+
* @return the next stage of completion containing the verification result in the form of a
347+
* {@link AccessCredentialVerification}
347348
*/
348349
public CompletionStage<AccessCredentialVerification> verify(final AccessCredential credential) {
349350
return v1Metadata().thenCompose(metadata -> {

0 commit comments

Comments
 (0)