File tree 2 files changed +11
-0
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ Project: jackson-databind
34
34
35
35
#2688: Block one more gadget type (apache-drill)
36
36
(reported by Topsec(tcc))
37
+ #2698: Block one more gadget type (weblogic/oracle-aqjms)
38
+ (reported by Fangrun Li)
37
39
38
40
2.9.10.4 (11-Apr-2020)
39
41
Original file line number Diff line number Diff line change @@ -183,6 +183,15 @@ public class SubTypeValidator
183
183
// [databind#2688]: apache/drill
184
184
s .add ("oadd.org.apache.xalan.lib.sql.JNDIConnectionPool" );
185
185
186
+ // [databind#2698]: weblogic w/ oracle/aq-jms
187
+ // (note: dependency not available via Maven Central, but as part of
188
+ // weblogic installation, possibly fairly old version(s))
189
+ s .add ("oracle.jms.AQjmsQueueConnectionFactory" );
190
+ s .add ("oracle.jms.AQjmsXATopicConnectionFactory" );
191
+ s .add ("oracle.jms.AQjmsTopicConnectionFactory" );
192
+ s .add ("oracle.jms.AQjmsXAQueueConnectionFactory" );
193
+ s .add ("oracle.jms.AQjmsXAConnectionFactory" );
194
+
186
195
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
187
196
}
188
197
You can’t perform that action at this time.
0 commit comments