Skip to content
This repository was archived by the owner on Dec 12, 2018. It is now read-only.

Commit b28e97f

Browse files
author
Richard Blaylock
committed
Issue-1136 Add links in Javadocs.
1 parent 7ab448b commit b28e97f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

api/src/main/java/com/stormpath/sdk/saml/AuthnVerification.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
11
package com.stormpath.sdk.saml;
22

3+
import com.stormpath.sdk.application.Application;
34
import com.stormpath.sdk.resource.Resource;
45

56
import java.util.Date;
67

78
/**
89
* An AuthnVerification represents the successful results of verifying the signature of a SAML AuthnRequest targeted
9-
* against a particular Stormpath Application.
10+
* against a particular Stormpath {@link Application}.
1011
*
1112
* @since 1.3.0
1213
*/
1314
public interface AuthnVerification extends Resource {
1415

1516
/**
1617
* Returns the relay state provided with the original SAML AuthnRequest, if any was provided. Otherwise the default
17-
* relay state configured for the Application.
18+
* relay state configured for the {@link Application}.
1819
*
1920
* @return the relay state associated with the SAML AuthnRequest.
2021
*/
2122
String getRelayState();
2223

2324
/**
24-
* Returns the RegisteredSamlServiceProvider associated with the entityId of the original AuthnRequest.
25+
* Returns the {@link RegisteredSamlServiceProvider} associated with the entityId of the original AuthnRequest.
2526
*
26-
* @return the RegisteredSamlServiceProvider associated with the entityId of the original AuthnRequest.
27+
* @return the {@link RegisteredSamlServiceProvider} associated with the entityId of the original AuthnRequest.
2728
*/
2829
RegisteredSamlServiceProvider getServiceProvider();
2930

0 commit comments

Comments
 (0)