Add missing license headers 76/42376/2
authorThanh Ha <thanh.ha@linuxfoundation.org>
Sat, 23 Jul 2016 03:04:25 +0000 (23:04 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Sat, 23 Jul 2016 03:05:47 +0000 (23:05 -0400)
Change-Id: I1c04ef692375fdc741858b77c1ae76b985da3721
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
12 files changed:
openstack/net-virt-providers/src/test/java/org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/PipelineOrchestratorTest.java
openstack/net-virt/src/test/java/org/opendaylight/netvirt/openstack/netvirt/api/LoadBalancerConfigurationTest.java
openstack/net-virt/src/test/java/org/opendaylight/netvirt/openstack/netvirt/impl/BridgeConfigurationManagerImplTest.java
openstack/utils/config/src/test/java/org/opendaylight/netvirt/utils/config/ConfigPropertiesTest.java
openstack/utils/mdsal-openflow/src/test/java/org/opendaylight/netvirt/utils/mdsal/openflow/MatchUtilsTest.java
openstack/utils/servicehelper/src/test/java/org/opendaylight/netvirt/utils/servicehelper/ServiceHelperTest.java
vpnservice/bgpmanager/bgpmanager-impl/src/test/java/org/opendaylight/netvirt/bgpmanager/test/AbstractMockFibManager.java
vpnservice/bgpmanager/bgpmanager-impl/src/test/java/org/opendaylight/netvirt/bgpmanager/test/BgpManagerTest.java
vpnservice/bgpmanager/bgpmanager-impl/src/test/java/org/opendaylight/netvirt/bgpmanager/test/MockFibManager.java
vpnservice/fibmanager/fibmanager-impl/src/test/java/org/opendaylight/netvirt/fibmanager/test/FibManagerTest.java
vpnservice/natservice/natservice-impl/src/test/java/org/opendaylight/netvirt/natservice/internal/test/NaptManagerTest.java
vpnservice/neutronvpn/neutronvpn-impl/src/test/java/org/opendaylight/netvirt/neutronvpn/NeutronPortChangeListenerTest.java

index 986bec153ed7f441e75a901e4995d30b3deb4740..afc61fe611f93039c4a9fc14c2bd1ab954536700 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2016 Red Hat, 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.netvirt.openstack.netvirt.providers.openflow13;
 
 import static org.junit.Assert.assertEquals;
index e011d04464b2081c205eaa6ea6c5fd783654fd94..86aed244fba849115e6b7d384986802f8aa5d3a1 100644 (file)
@@ -1,12 +1,10 @@
 /*
-* Copyright (c) 2014 Intel Corp. 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
-*
-* Authors : Marcus Koontz
-*/
+ * Copyright (c) 2014 Intel Corp. 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.netvirt.openstack.netvirt.api;
 
 import static org.junit.Assert.assertEquals;
@@ -114,4 +112,4 @@ public class LoadBalancerConfigurationTest {
         lbConfig.removeMember("mockUUID1");
         assertFalse("load balancer config returned true for isValid, should be false ", lbConfig.isValid());
     }
-}
\ No newline at end of file
+}
index 8a160b1ffb38f4edefc446ec4fd8037eb50e63a5..f89aa91aabf76012e0dbfb947046e09c70dad137 100644 (file)
@@ -1,10 +1,10 @@
 /*
-* Copyright (c) 2014, 2016 Intel Corp. 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
-*/
+ * Copyright (c) 2014, 2016 Intel Corp. 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.netvirt.openstack.netvirt.impl;
 
 import static org.junit.Assert.assertEquals;
@@ -356,4 +356,4 @@ public class BridgeConfigurationManagerImplTest {
         field.setAccessible(true);
         return field.get(bridgeConfigurationManagerImpl);
     }
-}
\ No newline at end of file
+}
index 90cc403f92276a2582a848c4fd283159a08dff7d..de91a14f56d3d3c23afe471b4f6c07e20b44d25d 100644 (file)
@@ -1,12 +1,10 @@
 /*
-* Copyright (C) 2014 Red Hat, 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
-*
-* Authors : Flavio Fernandes
-*/
+ * Copyright (C) 2014 Red Hat, 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.netvirt.utils.config;
 
 import static org.junit.Assert.assertEquals;
index 05ca4b503b9261dd5b29f5c265031977b87fc3f5..1889bb574ba89a62cda64b6c46a904db842f62a7 100644 (file)
@@ -1,11 +1,9 @@
 /*
- *  Copyright (C) 2014 Red Hat, Inc. and others.  All rights reserved.
+ * Copyright (C) 2014 Red Hat, 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
- *
- *  Authors : Sam Hague
+ * 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.netvirt.utils.mdsal.openflow;
 
index b06c68d0bba1b117141ad0d57b4c9cff1e23f6cc..d7678b5f0805f14f36790a6b197aa7ae4f9bf3ac 100644 (file)
@@ -1,11 +1,9 @@
 /*
- *  Copyright (C) 2015 Red Hat, Inc. and others.  All rights reserved.
+ * Copyright (C) 2015 Red Hat, 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
- *
- *  Authors : Sam Hague
+ * 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.netvirt.utils.servicehelper;
 
index 25d8ebec84534078962a4192175b68b1d7967e2b..3be6d9e83f6da2a52c1c8eac27acce9b5fc59b1c 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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.netvirt.bgpmanager.test;
 
 import java.util.Collection;
index baec0829fc1a4bdcc25c4f96e7e3688e5f9a8e1d..20a9310b5d692f879383220897d42eb6aa0bc9a9 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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.netvirt.bgpmanager.test;
 
 import java.util.Arrays;
index d0cc917b1e91974554b8ba33da254f99e0cd2686..1e1f00cf6ce9cc4ff2910fbdfc20a3a2e1c235a8 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2016 Ericsson India Global Services Pvt Ltd. 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.netvirt.bgpmanager.test;
 
 import java.util.Collection;
index fd157e605ec41860ee9dcd522d7538425e9f6559..4a4b099af9b4f5aaf2fa50fdcc89efc5ddd406a7 100644 (file)
@@ -1,9 +1,9 @@
 /*
- * Copyright (c) 2015 - 2016 Ericsson India Global Services Pvt Ltd. 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
+ * Copyright (c) 2015, 2016 Ericsson India Global Services Pvt Ltd. 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.netvirt.fibmanager.test;
 
@@ -213,4 +213,4 @@ public class FibManagerTest {
     InstanceIdentifier<VrfEntry> vrfEntryId = idBuilder.build();
     return vrfEntryId;
   }
-}
\ No newline at end of file
+}
index cc967b776b09c43ecd536cb356b18a68cd53ccd0..1ef453d888fd8170dc77147f1816c72bf6017a7d 100644 (file)
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) 2016 Red Hat, 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.netvirt.natservice.internal.test;
 
 import static org.junit.Assert.assertEquals;
@@ -163,7 +170,7 @@ public class NaptManagerTest {
             assertEquals("true", "false");
         }
         naptManager.getExternalAddressMapping(5, internalIpPort);
-        PowerMockito.verifyStatic(); */  
+        PowerMockito.verifyStatic(); */
     }
 
     @Test
index f920086f2dcbf8764a8e173fe8ba9d89c538530c..a99ce6f8e5bca05249645c786be5a19ece55cdd1 100644 (file)
@@ -1,3 +1,11 @@
+/*
+ * Copyright (c) 2016 Hewlett-Packard Development Company, L.P. 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.netvirt.neutronvpn;
 
 import static org.mockito.Matchers.any;