summaryrefslogtreecommitdiff
path: root/qpid/java/bdbstore/src
diff options
context:
space:
mode:
authorKeith Wall <kwall@apache.org>2014-06-07 19:00:39 +0000
committerKeith Wall <kwall@apache.org>2014-06-07 19:00:39 +0000
commit21aceae395ef19dca56dc603ed3f2af744b620a7 (patch)
tree06fdeb841657728ef771086c3c9f3d47c1c27d3d /qpid/java/bdbstore/src
parent6ddaec7aa7ca032a47144aa3148497367dd70d3b (diff)
downloadqpid-python-21aceae395ef19dca56dc603ed3f2af744b620a7.tar.gz
QPID-5800: [Java Broker] Remove the now redundant MessageStore/DurableConfigurationStore factories
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1601162 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/bdbstore/src')
-rw-r--r--qpid/java/bdbstore/src/main/java/org/apache/qpid/server/store/berkeleydb/BDBMessageStoreFactory.java85
-rw-r--r--qpid/java/bdbstore/src/main/java/org/apache/qpid/server/virtualhostnode/berkeleydb/BDBVirtualHostNodeImpl.java9
2 files changed, 4 insertions, 90 deletions
diff --git a/qpid/java/bdbstore/src/main/java/org/apache/qpid/server/store/berkeleydb/BDBMessageStoreFactory.java b/qpid/java/bdbstore/src/main/java/org/apache/qpid/server/store/berkeleydb/BDBMessageStoreFactory.java
deleted file mode 100644
index 067372a228..0000000000
--- a/qpid/java/bdbstore/src/main/java/org/apache/qpid/server/store/berkeleydb/BDBMessageStoreFactory.java
+++ /dev/null
@@ -1,85 +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.store.berkeleydb;
-
-import java.util.Map;
-
-import org.apache.qpid.server.model.VirtualHost;
-import org.apache.qpid.server.plugin.DurableConfigurationStoreFactory;
-import org.apache.qpid.server.plugin.MessageStoreFactory;
-import org.apache.qpid.server.plugin.PluggableService;
-import org.apache.qpid.server.store.DurableConfigurationStore;
-import org.apache.qpid.server.store.MessageStore;
-
-@PluggableService
-public class BDBMessageStoreFactory implements MessageStoreFactory, DurableConfigurationStoreFactory
-{
-
- @Override
- public String getType()
- {
- return StandardEnvironmentFacade.TYPE;
- }
-
- @Override
- public DurableConfigurationStore createDurableConfigurationStore()
- {
- return new BDBConfigurationStore();
- }
-
- @Override
- public MessageStore createMessageStore()
- {
- return (new BDBConfigurationStore()).getMessageStore();
- }
-
- @Override
- public void validateAttributes(Map<String, Object> attributes)
- {
- @SuppressWarnings("unchecked")
- Map<String, Object> messageStoreSettings = (Map<String, Object>) attributes.get(VirtualHost.MESSAGE_STORE_SETTINGS);
- if(messageStoreSettings != null && getType().equals(messageStoreSettings.get(MessageStore.STORE_TYPE)))
- {
- Object storePath = messageStoreSettings.get(MessageStore.STORE_PATH);
- if(!(storePath instanceof String))
- {
- throw new IllegalArgumentException("Setting '"+ MessageStore.STORE_PATH
- +"' is required and must be of type String.");
-
- }
- }
- }
-
- @Override
- public void validateConfigurationStoreSettings(Map<String, Object> configurationStoreSettings)
- {
- if(configurationStoreSettings != null && getType().equals(configurationStoreSettings.get(DurableConfigurationStore.STORE_TYPE)))
- {
- Object storePath = configurationStoreSettings.get(DurableConfigurationStore.STORE_PATH);
- if(!(storePath instanceof String))
- {
- throw new IllegalArgumentException("Durable configuration store setting '" + DurableConfigurationStore.STORE_PATH
- + "' is required and must be of type String.");
-
- }
- }
- }
-}
diff --git a/qpid/java/bdbstore/src/main/java/org/apache/qpid/server/virtualhostnode/berkeleydb/BDBVirtualHostNodeImpl.java b/qpid/java/bdbstore/src/main/java/org/apache/qpid/server/virtualhostnode/berkeleydb/BDBVirtualHostNodeImpl.java
index 138c0717a2..591623510f 100644
--- a/qpid/java/bdbstore/src/main/java/org/apache/qpid/server/virtualhostnode/berkeleydb/BDBVirtualHostNodeImpl.java
+++ b/qpid/java/bdbstore/src/main/java/org/apache/qpid/server/virtualhostnode/berkeleydb/BDBVirtualHostNodeImpl.java
@@ -26,8 +26,8 @@ import org.apache.qpid.server.model.Broker;
import org.apache.qpid.server.model.ManagedAttributeField;
import org.apache.qpid.server.model.ManagedObject;
import org.apache.qpid.server.model.ManagedObjectFactoryConstructor;
-import org.apache.qpid.server.plugin.DurableConfigurationStoreFactory;
-import org.apache.qpid.server.store.berkeleydb.BDBMessageStoreFactory;
+import org.apache.qpid.server.store.DurableConfigurationStore;
+import org.apache.qpid.server.store.berkeleydb.BDBConfigurationStore;
import org.apache.qpid.server.virtualhostnode.AbstractStandardVirtualHostNode;
@ManagedObject( category = false, type = "BDB" )
@@ -46,9 +46,9 @@ public class BDBVirtualHostNodeImpl extends AbstractStandardVirtualHostNode<BDBV
}
@Override
- protected DurableConfigurationStoreFactory getDurableConfigurationStoreFactory()
+ protected DurableConfigurationStore createConfigurationStore()
{
- return new BDBMessageStoreFactory();
+ return new BDBConfigurationStore();
}
@Override
@@ -56,7 +56,6 @@ public class BDBVirtualHostNodeImpl extends AbstractStandardVirtualHostNode<BDBV
{
return _environmentConfiguration;
}
-
@Override
public String getStorePath()
{