This repository was archived by the owner on Dec 12, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
api/src/main/java/com/stormpath/sdk/saml Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 11package com .stormpath .sdk .saml ;
22
3+ import com .stormpath .sdk .application .Application ;
34import com .stormpath .sdk .resource .Resource ;
45
56import 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 */
1314public 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
You can’t perform that action at this time.
0 commit comments