File tree Expand file tree Collapse file tree
core/src/main/java/com/onelogin/saml2/http Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,7 +35,9 @@ public final class HttpRequest {
3535 *
3636 * @param requestURL the request URL (up to but not including query parameters)
3737 * @throws NullPointerException if requestURL is null
38+ * @deprecated Not providing a queryString can cause HTTP Redirect binding to fail.
3839 */
40+ @ Deprecated
3941 public HttpRequest (String requestURL ) {
4042 this (requestURL , EMPTY_PARAMETERS );
4143 }
@@ -56,7 +58,9 @@ public HttpRequest(String requestURL, String queryString) {
5658 * @param requestURL the request URL (up to but not including query parameters)
5759 * @param parameters the request query parameters
5860 * @throws NullPointerException if any of the parameters is null
61+ * @deprecated Not providing a queryString can cause HTTP Redirect binding to fail.
5962 */
63+ @ Deprecated
6064 public HttpRequest (String requestURL , Map <String , List <String >> parameters ) {
6165 this (requestURL , parameters , null );
6266 }
You can’t perform that action at this time.
0 commit comments