diff options
| author | Alex Rudyy <orudyy@apache.org> | 2014-05-15 16:14:41 +0000 |
|---|---|---|
| committer | Alex Rudyy <orudyy@apache.org> | 2014-05-15 16:14:41 +0000 |
| commit | 081bc26aad845b3b8c4190afb7014206b74e4335 (patch) | |
| tree | 0b624cacf11597497898529813fce5c95c66f87e /qpid/java/broker-core | |
| parent | 2c802479f99ff5eeeb0958b0869c700f55c0e889 (diff) | |
| download | qpid-python-081bc26aad845b3b8c4190afb7014206b74e4335.tar.gz | |
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
Diffstat (limited to 'qpid/java/broker-core')
| -rw-r--r-- | qpid/java/broker-core/src/main/java/org/apache/qpid/server/model/ConfigurationChangeListener.java | 8 |
1 files changed, 4 insertions, 4 deletions
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); } |
