summaryrefslogtreecommitdiff
path: root/qpid/java/broker-plugins
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2014-08-21 20:59:01 +0000
committerRobert Godfrey <rgodfrey@apache.org>2014-08-21 20:59:01 +0000
commit28e4e6182a06c7b247f5d51e05b3350456ce92e9 (patch)
tree7358021afb449dfb8019b4002a0a30a4e974302b /qpid/java/broker-plugins
parentc00dff90f24713fc56cdfc77fc24e4bd57435654 (diff)
downloadqpid-python-28e4e6182a06c7b247f5d51e05b3350456ce92e9.tar.gz
QPID-6027 : Add persisted derived attributes to the initial configuration extract
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1619584 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/broker-plugins')
-rw-r--r--qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/servlet/rest/ConfiguredObjectToMapConverter.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/servlet/rest/ConfiguredObjectToMapConverter.java b/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/servlet/rest/ConfiguredObjectToMapConverter.java
index c8bce09485..7769263e5a 100644
--- a/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/servlet/rest/ConfiguredObjectToMapConverter.java
+++ b/qpid/java/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/servlet/rest/ConfiguredObjectToMapConverter.java
@@ -34,6 +34,7 @@ import java.util.Set;
import java.util.TreeMap;
import org.apache.qpid.server.model.ConfiguredObject;
+import org.apache.qpid.server.model.ConfiguredObjectAttribute;
public class ConfiguredObjectToMapConverter
{
@@ -148,6 +149,18 @@ public class ConfiguredObjectToMapConverter
{
object.put(name, value);
}
+ else if (extractAsConfig)
+ {
+ ConfiguredObjectAttribute<?, ?> attribute = confObject.getModel()
+ .getTypeRegistry()
+ .getAttributeTypes(confObject.getClass())
+ .get(name);
+
+ if(attribute.isPersisted() && attribute.isDerived())
+ {
+ object.put(name, confObject.getAttribute(name));
+ }
+ }
}
}
}