Ignored property

This commit is contained in:
Luca Frosini 2023-01-03 18:14:03 +01:00
parent f54b0b34dc
commit db1654259b
1 changed files with 2 additions and 4 deletions

View File

@ -48,6 +48,7 @@ public class DepositionVersion {
@JsonProperty(value = "release_ticket")
protected URL releaseTicket;
@JsonIgnore
protected Boolean noCodeLocation;
@JsonProperty(value = "code_location")
@ -124,14 +125,11 @@ public class DepositionVersion {
this.releaseTicket = releaseTicket;
}
@JsonIgnore
public Boolean getNoCodeLocation() {
return noCodeLocation;
}
public void setNoCodeLocation(Boolean noCodeLocation) {
this.noCodeLocation = noCodeLocation;
}
public URL getCodeLocation() {
return codeLocation;
}