Skip to content

Commit

Permalink
Update AuthenticationApi.java
Browse files Browse the repository at this point in the history
  • Loading branch information
abirembaut authored Feb 20, 2025
1 parent 041bd4f commit 74e994f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ public interface AuthenticationApi extends ApiClient.Api {
* @param redirect \\\"true\\\" or \\\"false\\\". \\\"false\\\" indicates that the service should not redirect to Bonita Portal
* (after a successful login) or to the login page (after a login failure). (optional, default to false)
* @param redirectURL the URL of the page to be displayed after login (optional, default to )
* @return String
* @return Response
*/
@RequestLine("POST /loginservice")
@Headers({
"Content-Type: application/x-www-form-urlencoded",
"Accept: application/json,text/plain",
"Accept: application/json",
})
Response login(@Param("username") String username, @Param("password") String password,
@Param("redirect") String redirect, @Param("redirectURL") String redirectURL);
Expand Down

0 comments on commit 74e994f

Please sign in to comment.