Repository: activemq-openwire Updated Branches: refs/heads/master e263789c3 -> 45ecbaf56
OPENWIRE-7 Add the single v11 feild addition for subscription info. Marshallers still need to be generated for this update. Project: http://git-wip-us.apache.org/repos/asf/activemq-openwire/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-openwire/commit/45ecbaf5 Tree: http://git-wip-us.apache.org/repos/asf/activemq-openwire/tree/45ecbaf5 Diff: http://git-wip-us.apache.org/repos/asf/activemq-openwire/diff/45ecbaf5 Branch: refs/heads/master Commit: 45ecbaf563e3c44e1c459e65dfeb07c283f0c03a Parents: e263789 Author: Timothy Bish <[email protected]> Authored: Thu Oct 22 16:59:11 2015 -0400 Committer: Timothy Bish <[email protected]> Committed: Thu Oct 22 16:59:11 2015 -0400 ---------------------------------------------------------------------- .../activemq/openwire/commands/SubscriptionInfo.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-openwire/blob/45ecbaf5/openwire-core/src/main/java/org/apache/activemq/openwire/commands/SubscriptionInfo.java ---------------------------------------------------------------------- diff --git a/openwire-core/src/main/java/org/apache/activemq/openwire/commands/SubscriptionInfo.java b/openwire-core/src/main/java/org/apache/activemq/openwire/commands/SubscriptionInfo.java index 41ffcf6..99fc3bd 100644 --- a/openwire-core/src/main/java/org/apache/activemq/openwire/commands/SubscriptionInfo.java +++ b/openwire-core/src/main/java/org/apache/activemq/openwire/commands/SubscriptionInfo.java @@ -30,6 +30,7 @@ public class SubscriptionInfo implements DataStructure { protected String clientId; protected String subscriptionName; protected String selector; + protected boolean noLocal; public SubscriptionInfo() { } @@ -151,4 +152,15 @@ public class SubscriptionInfo implements DataStructure { public void setSubscribedDestination(OpenWireDestination subscribedDestination) { this.subscribedDestination = subscribedDestination; } + + /** + * @openwire:property version=11 + */ + public boolean isNoLocal() { + return noLocal; + } + + public void setNoLocal(boolean noLocal) { + this.noLocal = noLocal; + } }
