Skip to content

Commit

Permalink
Merge pull request #384 from scriptom/fix/multivalue-field-processing
Browse files Browse the repository at this point in the history
Add missing JsonIgnore in CustomObjectInstance
  • Loading branch information
johnsully83 authored Jun 1, 2022
2 parents 1db175a + c1f27c9 commit bbc3bc4
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,15 @@ public abstract class CustomObjectInstance extends AbstractEntity implements Que
private BigDecimal float8;
private BigDecimal float9;
private BigDecimal float10;
@JsonIgnore
private String textBlock1;
@JsonIgnore
private String textBlock2;
@JsonIgnore
private String textBlock3;
@JsonIgnore
private String textBlock4;
@JsonIgnore
private String textBlock5;
private DateTime date1;
private DateTime date2;
Expand Down Expand Up @@ -533,6 +538,7 @@ public String getTextBlock1() {
return textBlock1;
}

@JsonIgnore
@JsonProperty("textBlock1")
public void setTextBlock1(String textBlock1) {
this.textBlock1 = textBlock1;
Expand All @@ -543,6 +549,7 @@ public String getTextBlock2() {
return textBlock2;
}

@JsonIgnore
@JsonProperty("textBlock2")
public void setTextBlock2(String textBlock2) {
this.textBlock2 = textBlock2;
Expand All @@ -553,6 +560,7 @@ public String getTextBlock3() {
return textBlock3;
}

@JsonIgnore
@JsonProperty("textBlock3")
public void setTextBlock3(String textBlock3) {
this.textBlock3 = textBlock3;
Expand All @@ -563,6 +571,7 @@ public String getTextBlock4() {
return textBlock4;
}

@JsonIgnore
@JsonProperty("textBlock4")
public void setTextBlock4(String textBlock4) {
this.textBlock4 = textBlock4;
Expand All @@ -573,6 +582,7 @@ public String getTextBlock5() {
return textBlock5;
}

@JsonIgnore
@JsonProperty("textBlock5")
public void setTextBlock5(String textBlock5) {
this.textBlock5 = textBlock5;
Expand Down

0 comments on commit bbc3bc4

Please sign in to comment.