diff options
| author | Keith Wall <kwall@apache.org> | 2014-12-29 17:06:39 +0000 |
|---|---|---|
| committer | Keith Wall <kwall@apache.org> | 2014-12-29 17:06:39 +0000 |
| commit | 1c420bf20a6902efb0256c881c8b777ccd211b4a (patch) | |
| tree | f1e54c7cacf0f4bb7ade18d5b535b4f9b561f28f /qpid/java/systests/src | |
| parent | 6785c68751aeac2dbfab0ae9b1c61f7719890b96 (diff) | |
| download | qpid-python-1c420bf20a6902efb0256c881c8b777ccd211b4a.tar.gz | |
QPID-6291: [Java Broker] Remove the now defunct supported attributes: VH#supportedExchangeTypes, VH#supportedQueueTypes, Broker#supportedAuthenticationProviders, Broker#supportedPreferencesProviderTypes
Clients now can discover the supported attributes in a generic fashion via the metadata service.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1648392 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/systests/src')
| -rw-r--r-- | qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/Asserts.java | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/Asserts.java b/qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/Asserts.java index 2c3ad1f8e5..e609d73268 100644 --- a/qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/Asserts.java +++ b/qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/Asserts.java @@ -76,7 +76,6 @@ public class Asserts ConfiguredObject.DESCRIPTION, ConfiguredObject.CONTEXT, ConfiguredObject.DESIRED_STATE, - VirtualHost.SUPPORTED_QUEUE_TYPES, VirtualHost.TYPE); assertEquals("Unexpected value of attribute " + VirtualHost.NAME, @@ -93,12 +92,6 @@ public class Asserts virtualHost.get(VirtualHost.QUEUE_DEAD_LETTER_QUEUE_ENABLED)); @SuppressWarnings("unchecked") - Collection<String> exchangeTypes = (Collection<String>) virtualHost.get(VirtualHost.SUPPORTED_EXCHANGE_TYPES); - assertEquals("Unexpected value of attribute " + VirtualHost.SUPPORTED_EXCHANGE_TYPES, - new HashSet<String>(Arrays.asList("headers", "topic", "direct", "fanout")), - new HashSet<String>(exchangeTypes)); - - @SuppressWarnings("unchecked") Map<String, Object> statistics = (Map<String, Object>) virtualHost.get(STATISTICS_ATTRIBUTE); Asserts.assertAttributesPresent(statistics, "queueCount","exchangeCount","bytesIn","bytesOut","messagesIn", "messagesOut"); |
