Github user michaelandrepearce commented on a diff in the pull request: https://github.com/apache/activemq-artemis/pull/1778#discussion_r161978353 --- Diff: artemis-jms-client/src/main/java/org/apache/activemq/artemis/jms/client/ActiveMQDestination.java --- @@ -231,6 +239,16 @@ public static ActiveMQTemporaryTopic createTemporaryTopic(String address) { */ private SimpleString simpleAddress; + /** + * Needed for serialization backwards compatibility. + */ + private String address; + + /** + * The "JMS" name of the destination. Needed for serialization backwards compatibility. + */ + private String name; --- End diff -- Can we mark as deprecated
---