Class HttpBasicAuth
- java.lang.Object
-
- app.cybrid.cybrid_api_id.client.auth.HttpBasicAuth
-
- All Implemented Interfaces:
Authentication
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-02-02T16:09:38.427750Z[Etc/UTC]") public class HttpBasicAuth extends Object implements Authentication
-
-
Constructor Summary
Constructors Constructor Description HttpBasicAuth()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidapplyToParams(org.springframework.util.MultiValueMap<String,String> queryParams, org.springframework.http.HttpHeaders headerParams, org.springframework.util.MultiValueMap<String,String> cookieParams)Apply authentication settings to header and / or query parameters.StringgetPassword()StringgetUsername()voidsetPassword(String password)voidsetUsername(String username)
-
-
-
Method Detail
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
applyToParams
public void applyToParams(org.springframework.util.MultiValueMap<String,String> queryParams, org.springframework.http.HttpHeaders headerParams, org.springframework.util.MultiValueMap<String,String> cookieParams)
Description copied from interface:AuthenticationApply authentication settings to header and / or query parameters.- Specified by:
applyToParamsin interfaceAuthentication- Parameters:
queryParams- The query parameters for the requestheaderParams- The header parameters for the requestcookieParams- The cookie parameters for the request
-
-