You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gravitee-apim-definition/gravitee-apim-definition-model/src/main/java/io/gravitee/definition/model/Endpoint.java
+8
Original file line number
Diff line number
Diff line change
@@ -161,10 +161,18 @@ public void addEndpointStatusListener(EndpointStatusListener listener) {
161
161
listeners.add(listener);
162
162
}
163
163
164
+
@JsonIgnore
165
+
// Need to add @JsonIgnore too because transient + @JsonIgnore on the property does not work anymore in 2.15
166
+
// See https://github.com/FasterXML/jackson-databind/issues/3874#issuecomment-1505211857
167
+
// Before 2.15, it was an unexpected feature.
164
168
publicStringgetConfiguration() {
165
169
returnconfiguration;
166
170
}
167
171
172
+
@JsonIgnore
173
+
// Need to add @JsonIgnore too because transient + @JsonIgnore on the property does not work anymore in 2.15
174
+
// See https://github.com/FasterXML/jackson-databind/issues/3874#issuecomment-1505211857
0 commit comments