Interface TrustedConnectionStatusBuilder
-
- All Known Implementing Classes:
DefaultTrustedConnectionStatusBuilder
@Deprecated(forRemoval=true) public interface TrustedConnectionStatusBuilder
Deprecated, for removal: This API element is subject to removal in a future version.since 7.0.1 will be removed in 9.0Retrieves theTrustedConnectionStatusfrom the response to an HTTP request using the Trusted Applications Authentication protocol.- Since:
- 2.10
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description TrustedConnectionStatusgetTrustedConnectionStatus(HttpResponse httpResponse)Deprecated, for removal: This API element is subject to removal in a future version.Parses the Trusted Applications Authentication headers from the HTTP response provided to the method and builds aTrustedConnectionStatusobject with the results.
-
-
-
Method Detail
-
getTrustedConnectionStatus
TrustedConnectionStatus getTrustedConnectionStatus(HttpResponse httpResponse)
Deprecated, for removal: This API element is subject to removal in a future version.Parses the Trusted Applications Authentication headers from the HTTP response provided to the method and builds aTrustedConnectionStatusobject with the results. It is assumed that the response corresponds to a request that was made using TAA headers; if you call this on a response to a request where trusted authentication was not attempted, the return value is undefined.- Parameters:
httpResponse- the HTTP response to extract the trusted connection status from. Must not benull, or anIllegalArgumentExceptionwill be thrown.- Returns:
- a
TrustedConnectionStatusobject containing information about the status and any errors that occurred with the trusted connection. Must not returnnull. - Throws:
IllegalArgumentException- if thehttpResponseparameter isnull
-
-