Swagger - spring fox - hide password.
In one of our API I need to return alphanumeric code after verifying user id and password.
We are using springfox-swagger-ui-2.3.1.I have a field "password" where I do not want to show password (instead i want to show "XXXX") when user types in swagger ui.
password is defined as @RequestParam(value = "password") String password.
any suggestion is highly appreciated.
@RequestParam(value = "password", type = "string", format = "password")
to see if it supports swagger format? – Frederickson