From 081bc26aad845b3b8c4190afb7014206b74e4335 Mon Sep 17 00:00:00 2001 From: Alex Rudyy Date: Thu, 15 May 2014 16:14:41 +0000 Subject: QPID-5715: Fix Virtual Host MBean creation in JMX management plugin git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1594963 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/qpid/server/model/ConfigurationChangeListener.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'qpid/java/broker-core/src') diff --git a/qpid/java/broker-core/src/main/java/org/apache/qpid/server/model/ConfigurationChangeListener.java b/qpid/java/broker-core/src/main/java/org/apache/qpid/server/model/ConfigurationChangeListener.java index d20c709e90..a381c72f99 100644 --- a/qpid/java/broker-core/src/main/java/org/apache/qpid/server/model/ConfigurationChangeListener.java +++ b/qpid/java/broker-core/src/main/java/org/apache/qpid/server/model/ConfigurationChangeListener.java @@ -29,11 +29,11 @@ public interface ConfigurationChangeListener * @param oldState the state prior to the change * @param newState the state after the change */ - void stateChanged(ConfiguredObject object, State oldState, State newState); + void stateChanged(ConfiguredObject object, State oldState, State newState); - void childAdded(ConfiguredObject object, ConfiguredObject child); + void childAdded(ConfiguredObject object, ConfiguredObject child); - void childRemoved(ConfiguredObject object, ConfiguredObject child); + void childRemoved(ConfiguredObject object, ConfiguredObject child); - void attributeSet(ConfiguredObject object, String attributeName, Object oldAttributeValue, Object newAttributeValue); + void attributeSet(ConfiguredObject object, String attributeName, Object oldAttributeValue, Object newAttributeValue); } -- cgit v1.2.1