Repository: qpid-broker-j
Updated Branches:
  refs/heads/6.1.x ca3dd59c3 -> 579fd32e4


QPID-8236: [Broker-J] Make BDB HA group name, address and node name immutable

(cherry picked from commit d6ca0de4d4f193fd84ade278ad024e4f44ae22c7)


Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/579fd32e
Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/579fd32e
Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/579fd32e

Branch: refs/heads/6.1.x
Commit: 579fd32e411cdb8811cd6912715cd2a051ea6cea
Parents: ca3dd59
Author: Alex Rudyy <oru...@apache.org>
Authored: Mon Aug 27 17:02:14 2018 +0100
Committer: Alex Rudyy <oru...@apache.org>
Committed: Mon Aug 27 17:31:52 2018 +0100

----------------------------------------------------------------------
 .../virtualhostnode/berkeleydb/BDBHAVirtualHostNode.java      | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/579fd32e/bdbstore/src/main/java/org/apache/qpid/server/virtualhostnode/berkeleydb/BDBHAVirtualHostNode.java
----------------------------------------------------------------------
diff --git 
a/bdbstore/src/main/java/org/apache/qpid/server/virtualhostnode/berkeleydb/BDBHAVirtualHostNode.java
 
b/bdbstore/src/main/java/org/apache/qpid/server/virtualhostnode/berkeleydb/BDBHAVirtualHostNode.java
index 61f7cc5..aa8b76e 100644
--- 
a/bdbstore/src/main/java/org/apache/qpid/server/virtualhostnode/berkeleydb/BDBHAVirtualHostNode.java
+++ 
b/bdbstore/src/main/java/org/apache/qpid/server/virtualhostnode/berkeleydb/BDBHAVirtualHostNode.java
@@ -44,10 +44,13 @@ public interface BDBHAVirtualHostNode<X extends 
BDBHAVirtualHostNode<X>> extends
     public static final String HELPER_NODE_NAME = "helperNodeName";
     public static final String PERMITTED_NODES = "permittedNodes";
 
-    @ManagedAttribute(mandatory=true)
+    @ManagedAttribute(mandatory=true, immutable = true)
+    String getName();
+
+    @ManagedAttribute(mandatory=true, immutable = true)
     String getGroupName();
 
-    @ManagedAttribute(mandatory=true)
+    @ManagedAttribute(mandatory=true, immutable = true)
     String getAddress();
 
     @ManagedAttribute(mandatory=true)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to