Skip to content

Commit

Permalink
Fix comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
JeethJJ committed Nov 24, 2023
1 parent e1e8730 commit a16d803
Showing 1 changed file with 22 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,17 +190,17 @@ public SAMLSSOReqValidationResponseDTO validateIdPInitSSORequest(String relaySta
* If the user already have a SSO session then the Response
* will be returned if not only the validation results will be returned.
*
* @param relayState Relay state
* @param queryString Query string
* @param queryParamDTOs Query param DTOs
* @param serverURL Server url
* @param sessionId Session id
* @param rpSessionId Rp session id
* @param authnMode Authentication mode
* @param isLogout Is logout
* @param loginTenantDomain Login tenant domain
* @param relayState The relay state value used in SSO/SLO process, typically a unique identifier.
* @param queryString The complete query string from the SSO/SLO request.
* @param queryParamDTOs An array of QueryParamDTO objects representing the query parameters.
* @param serverURL The URL of the server where SSO/SLO request is processed.
* @param sessionId The session identifier for the user's current session.
* @param rpSessionId The session identifier for the relying party's session.
* @param authnMode The authentication mode used in the SSO/SLO process.
* @param isLogout Boolean flag indicating whether the request is for logout.
* @param loginTenantDomain The domain of the tenant in which the user is attempting to log in.
* @return
* @throws IdentityException
* @throws IdentityException If any error occurs during the validation of the IdP Initiated SSO/SLO request.
*
* @deprecated This method was deprecated to support IsPassive.
* Use {@link #validateIdPInitSSORequest(String,String,QueryParamDTO[],
Expand All @@ -223,18 +223,18 @@ public SAMLSSOReqValidationResponseDTO validateIdPInitSSORequest(String relaySta
* If the user already having a SSO session then the Response
* will be returned if not only the validation results will be returned.
*
* @param relayState Relay State
* @param queryString Query String
* @param queryParamDTOs Query Param DTOs
* @param serverURL Server url
* @param sessionId Session id
* @param rpSessionId Rp Session id
* @param authnMode Authn Mode
* @param isLogout Is Logout
* @param loginTenantDomain Login tenant Domain
* @param isPassive Is passive
* @return validationResponseDTO
* @throws IdentityException
* @param relayState The relay state value used in SSO/SLO process, typically a unique identifier.
* @param queryString The complete query string from the SSO/SLO request.
* @param queryParamDTOs An array of QueryParamDTO objects representing the query parameters.
* @param serverURL The URL of the server where SSO/SLO request is processed.
* @param sessionId The session identifier for the user's current session.
* @param rpSessionId The session identifier for the relying party's session.
* @param authnMode The authentication mode used in the SSO/SLO process.
* @param isLogout Boolean flag indicating whether the request is for logout.
* @param loginTenantDomain The domain of the tenant in which the user is attempting to log in.
* @param isPassive A boolean indicating whether the request is passive.
* @return validationResponseDTO
* @throws IdentityException If any error occurs during the validation of the IdP Initiated SSO/SLO request.
*/
public SAMLSSOReqValidationResponseDTO validateIdPInitSSORequest(String relayState, String queryString,
QueryParamDTO[] queryParamDTOs,
Expand Down

0 comments on commit a16d803

Please sign in to comment.