summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorAidan Skinner <aidan@apache.org>2009-09-09 08:36:52 +0000
committerAidan Skinner <aidan@apache.org>2009-09-09 08:36:52 +0000
commit20eba4a2b29721d88606148761599ee587d7d036 (patch)
treebfc10e4bf83943b504f91eeb0a7e00783625b6dc /qpid/java
parentaa390430eef0d8c689298ec455eaab91c0ae12d3 (diff)
downloadqpid-python-20eba4a2b29721d88606148761599ee587d7d036.tar.gz
Remove unusued FirewallFactory class
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@812821 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/broker/src/main/java/org/apache/qpid/server/security/access/plugins/network/FirewallFactory.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/qpid/java/broker/src/main/java/org/apache/qpid/server/security/access/plugins/network/FirewallFactory.java b/qpid/java/broker/src/main/java/org/apache/qpid/server/security/access/plugins/network/FirewallFactory.java
deleted file mode 100644
index a1a399e5bf..0000000000
--- a/qpid/java/broker/src/main/java/org/apache/qpid/server/security/access/plugins/network/FirewallFactory.java
+++ /dev/null
@@ -1,45 +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.security.access.plugins.network;
-
-import org.apache.commons.configuration.Configuration;
-import org.apache.commons.configuration.ConfigurationException;
-import org.apache.qpid.server.security.access.ACLPlugin;
-import org.apache.qpid.server.security.access.ACLPluginFactory;
-
-public class FirewallFactory implements ACLPluginFactory
-{
-
- @Override
- public ACLPlugin newInstance(Configuration config) throws ConfigurationException
- {
- FirewallPlugin plugin = new FirewallPlugin();
- plugin.setConfiguration(config);
- return plugin;
- }
-
- @Override
- public boolean supportsTag(String name)
- {
- return name.equals("firewall");
- }
-
-}