This is an automated email from the ASF dual-hosted git repository.
havret pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/activemq-nms-amqp.git
from 1bdedb3 Merge pull request #84 from apache/update_for_year_change
add b3e02e8 AMQNET-828 Add allow, deny types support
new 26ba587 Merge pull request #85 from apache/allow_deny_list
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
src/NMS.AMQP/Meta/NmsConnectionInfo.cs | 7 +-
src/NMS.AMQP/Meta/NmsConsumerInfo.cs | 4 +-
src/NMS.AMQP/NmsConnectionFactory.cs | 11 +-
src/NMS.AMQP/NmsMessageConsumer.cs | 3 +-
src/NMS.AMQP/Policies/INmsDeserializationPolicy.cs | 42 ++++++
.../Policies/NmsDefaultDeserializationPolicy.cs | 129 +++++++++++++++++
src/NMS.AMQP/Provider/Amqp/AmqpConsumer.cs | 3 +-
.../Amqp/Message/AmqpNmsObjectMessageFacade.cs | 18 ++-
.../Amqp/Message/AmqpSerializedObjectDelegate.cs | 18 ++-
.../Amqp/Message/AmqpTypedObjectDelegate.cs | 2 +
.../Amqp/Message/IAmqpObjectTypeDelegate.cs | 1 +
.../Provider/Amqp/Message/TrustedClassFilter.cs | 52 +++++++
.../AmqpTestSupport.cs | 3 +-
.../NmsMessageConsumerTest.cs | 84 +++++++++++
test/Apache-NMS-AMQP-Test/ConnectionFactoryTest.cs | 16 +++
.../NmsDefaultDeserializationPolicyTest.cs | 157 +++++++++++++++++++++
.../Provider/Amqp/AmqpNmsMessageTypesTestCase.cs | 4 +-
.../Amqp/AmqpNmsObjectMessageFacadeTest.cs | 1 +
18 files changed, 536 insertions(+), 19 deletions(-)
create mode 100644 src/NMS.AMQP/Policies/INmsDeserializationPolicy.cs
create mode 100644 src/NMS.AMQP/Policies/NmsDefaultDeserializationPolicy.cs
create mode 100644 src/NMS.AMQP/Provider/Amqp/Message/TrustedClassFilter.cs
create mode 100644
test/Apache-NMS-AMQP-Test/Policies/NmsDefaultDeserializationPolicyTest.cs