summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Rudyy <orudyy@apache.org>2013-01-25 17:53:58 +0000
committerAlex Rudyy <orudyy@apache.org>2013-01-25 17:53:58 +0000
commitb43ef3a79e120444448e6bc36eda71614bcb560f (patch)
tree25f88b30fb6a2c9610278ec2dbeab812d35fc8b8
parent4c0bcd3cddbde36a3aa153af2c70cc5b2ad97a86 (diff)
downloadqpid-python-b43ef3a79e120444448e6bc36eda71614bcb560f.tar.gz
QPID-4390: Remove unused classes
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/java-broker-config-qpid-4390@1438621 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/java/broker/src/main/java/org/apache/qpid/server/configuration/ConfigurationEntryStoreException.java37
-rw-r--r--qpid/java/broker/src/main/java/org/apache/qpid/server/configuration/startup/AttributeMap.java92
2 files changed, 0 insertions, 129 deletions
diff --git a/qpid/java/broker/src/main/java/org/apache/qpid/server/configuration/ConfigurationEntryStoreException.java b/qpid/java/broker/src/main/java/org/apache/qpid/server/configuration/ConfigurationEntryStoreException.java
deleted file mode 100644
index 645328f5f1..0000000000
--- a/qpid/java/broker/src/main/java/org/apache/qpid/server/configuration/ConfigurationEntryStoreException.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
- */
-package org.apache.qpid.server.configuration;
-
-@SuppressWarnings("serial")
-public class ConfigurationEntryStoreException extends RuntimeException
-{
-
- public ConfigurationEntryStoreException(String message, Throwable cause)
- {
- super(message, cause);
- }
-
- public ConfigurationEntryStoreException(String message)
- {
- super(message);
- }
-
-}
diff --git a/qpid/java/broker/src/main/java/org/apache/qpid/server/configuration/startup/AttributeMap.java b/qpid/java/broker/src/main/java/org/apache/qpid/server/configuration/startup/AttributeMap.java
deleted file mode 100644
index df05e2f73b..0000000000
--- a/qpid/java/broker/src/main/java/org/apache/qpid/server/configuration/startup/AttributeMap.java
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
- */
-package org.apache.qpid.server.configuration.startup;
-
-import java.util.Map;
-import java.util.Set;
-
-import org.apache.qpid.server.util.MapValueConverter;
-//TODO: delete me
-public class AttributeMap
-{
- private Map<String, Object> _source;
-
- public AttributeMap(Map<String, Object> source)
- {
- _source = source;
- }
-
- public String getStringAttribute(String name, String defaultVal)
- {
- return MapValueConverter.getStringAttribute(name, _source, defaultVal);
- }
-
- public Map<String, Object> getMapAttribute(String name, Map<String, Object> defaultVal)
- {
- return MapValueConverter.getMapAttribute(name, _source, defaultVal);
- }
-
- public <E extends Enum<?>> E getEnumAttribute(Class<E> clazz, String name, E defaultVal)
- {
- return MapValueConverter.getEnumAttribute(clazz, name, _source, defaultVal);
- }
-
- public <E extends Enum<?>> E getEnumAttribute(Class<E> clazz, String name)
- {
- return MapValueConverter.getEnumAttribute(clazz, name, _source);
- }
-
- public Boolean getBooleanAttribute(String name, Boolean defaultValue)
- {
- return MapValueConverter.getBooleanAttribute(name, _source, defaultValue);
- }
-
- public Integer getIntegerAttribute(String name, Integer defaultValue)
- {
- return MapValueConverter.getIntegerAttribute(name, _source, defaultValue);
- }
-
- public Long getLongAttribute(String name, Long defaultValue)
- {
- return MapValueConverter.getLongAttribute(name, _source, defaultValue);
- }
-
- public <T> Set<T> getSetAttribute(String name)
- {
- return MapValueConverter.getSetAttribute(name, _source);
- }
-
- public <T> Set<T> getSetAttribute(String name, Set<T> defaultValue)
- {
- return MapValueConverter.getSetAttribute(name, _source, defaultValue);
- }
-
- public String getStringAttribute(String name)
- {
- String value = getStringAttribute(name, null);
- if (value == null)
- {
- throw new IllegalArgumentException("Attribute with name '" + name + "' is not found!");
- }
- return value;
- }
-
-}