Interface RequestHttpObject<T extends RequestAbstractType>
-
- All Known Implementing Classes:
PostRequestHttpObject
,RedirectRequestHttpObject
public interface RequestHttpObject<T extends RequestAbstractType>
Defines an interface that represents an object that holds data necessary for the SP application to transmit a request message to an IdP.- Author:
- Martin Lindström (martin.lindstrom@litsec.se)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,String>
getHttpHeaders()
Returns a mapping of header names and values that should be used when sending the request.String
getMethod()
Returns the HTTP method that should be used to send the request, via the user agent, to the Identity Provider.T
getRequest()
Returns the actual request (for easy access to its elements).Map<String,String>
getRequestParameters()
If thegetMethod()
returns "POST" the request should be posted to the Identity Provider.String
getSendUrl()
Returns the complete URL that the SP application should use when the user agent is sent to the Identity Provider.
-
-
-
Method Detail
-
getSendUrl
String getSendUrl()
Returns the complete URL that the SP application should use when the user agent is sent to the Identity Provider.For a redirect, this URL could look something like:
Note: Additional query parameters may be added to the URL by the using system.https://www.theidp.com/auth?SAMLRequest=<encoded request>&RelayState=abcd
.- Returns:
- the URL to use when sending the user to the Identity Provider
-
getMethod
String getMethod()
Returns the HTTP method that should be used to send the request, via the user agent, to the Identity Provider. Possible values for this implementation is "GET" (redirect) and "POST".- Returns:
- the HTTP method to use
-
getRequestParameters
Map<String,String> getRequestParameters()
If thegetMethod()
returns "POST" the request should be posted to the Identity Provider. The request parameters are represented using a Map where the entries represent parameter names and values.Note: for the "GET" method this method returns
null
.- Returns:
- a Map holding the POST body
-
getHttpHeaders
Map<String,String> getHttpHeaders()
Returns a mapping of header names and values that should be used when sending the request.- Returns:
- HTTP headers
-
getRequest
T getRequest()
Returns the actual request (for easy access to its elements).- Returns:
- the request
-
-