-
Notifications
You must be signed in to change notification settings - Fork 139
Open
Description
I have an issue where I am trying to produce a schema for an object that has a password field. Obviously the field should be write-only and never be be serialised so it is marked as such in the entity but when I try to create the schema the field is omitted completely.
I have tried all of the following but they all result in the same outcome, no password field in the schema.
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
private String password;
@JsonIgnoreProperties(value="password", allowSetters = true)
class User {
private String password;
}
class User {
@JsonIgnore
private String password;
@JsonIgnore
public String getPassword() {
return password;
}
@JsonProperty
public void setPassword(String password) {
this.password = password;
}
}
I think that from a schema perspective the field should be defined as it is write-only and and clients of the service will need to send the field under different circumstances. I'm guessing this has something to do with the underlying use of jackson databind module but can you give any advice on how to achieve the desired outcome?
Thanks, Andy.
Metadata
Metadata
Assignees
Labels
No labels