Skip to content

Commit

Permalink
Fix #2698
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 25, 2020
1 parent d1c67a0 commit 5c8642a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Project: jackson-databind

#2688: Block one more gadget type (apache-drill)
(reported by Topsec(tcc))
#2698: Block one more gadget type (weblogic/oracle-aqjms)
(reported by Fangrun Li)

2.9.10.4 (11-Apr-2020)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,15 @@ public class SubTypeValidator
// [databind#2688]: apache/drill
s.add("oadd.org.apache.xalan.lib.sql.JNDIConnectionPool");

// [databind#2698]: weblogic w/ oracle/aq-jms
// (note: dependency not available via Maven Central, but as part of
// weblogic installation, possibly fairly old version(s))
s.add("oracle.jms.AQjmsQueueConnectionFactory");
s.add("oracle.jms.AQjmsXATopicConnectionFactory");
s.add("oracle.jms.AQjmsTopicConnectionFactory");
s.add("oracle.jms.AQjmsXAQueueConnectionFactory");
s.add("oracle.jms.AQjmsXAConnectionFactory");

DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
}

Expand Down

0 comments on commit 5c8642a

Please sign in to comment.