Fixed NAT in OFOverlay based on EIG
[groupbasedpolicy.git] / neutron-ovsdb / src / main / java / org / opendaylight / groupbasedpolicy / neutron / ovsdb / NeutronOvsdb.java
index d43697055c5ca9b6155f189ec6e92dc0956af054..ae4ce1ee6fa14c5a60728d7841094dd9b948df7e 100644 (file)
@@ -1,3 +1,11 @@
+/*
+ * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
 package org.opendaylight.groupbasedpolicy.neutron.ovsdb;
 
 import static com.google.common.base.Preconditions.checkNotNull;
@@ -16,7 +24,6 @@ public class NeutronOvsdb implements AutoCloseable {
     private final List<ServiceRegistration<?>> registrations = new ArrayList<ServiceRegistration<?>>();
     private final TerminationPointDataChangeListener tpListener;
     private final NodeDataChangeListener nodeListener;
-    private final NeutronGbpExternalGatewaysListener neutronGbpExternalGatewaysListener;
     private final NeutronGbpFloatingIpListener neutronGbpFloatingIpListener;
 
     public NeutronOvsdb(DataBroker dataProvider, RpcProviderRegistry rpcProvider, BundleContext context) {
@@ -27,7 +34,6 @@ public class NeutronOvsdb implements AutoCloseable {
         EndpointService epService = rpcProvider.getRpcService(EndpointService.class);
         tpListener = new TerminationPointDataChangeListener(dataProvider, epService);
         nodeListener = new NodeDataChangeListener(dataProvider);
-        neutronGbpExternalGatewaysListener = new NeutronGbpExternalGatewaysListener(dataProvider);
         neutronGbpFloatingIpListener = new NeutronGbpFloatingIpListener(dataProvider);
     }