Class AuthenticationDto
- java.lang.Object
-
- org.evomaster.client.java.controller.api.dto.AuthenticationDto
-
public class AuthenticationDto extends Object
To authenticate a user, would need specific settings, like specific values in the HTTP headers (eg, cookies)
-
-
Field Summary
Fields Modifier and Type Field Description CookieLoginDto
cookieLogin
If the login is based on cookies, need to provide info on how to get such a cookieList<HeaderDto>
headers
The headers needed for authenticationString
name
The name given to this authentication info.
-
Constructor Summary
Constructors Constructor Description AuthenticationDto()
AuthenticationDto(String name)
-
-
-
Field Detail
-
name
public String name
The name given to this authentication info. Just needed for display/debugging reasons
-
cookieLogin
public CookieLoginDto cookieLogin
If the login is based on cookies, need to provide info on how to get such a cookie
-
-
Constructor Detail
-
AuthenticationDto
public AuthenticationDto()
-
AuthenticationDto
public AuthenticationDto(String name)
-
-