Fix license header violations in neutron-spi 50/25050/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Sun, 9 Aug 2015 17:46:44 +0000 (13:46 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Sun, 9 Aug 2015 17:46:44 +0000 (13:46 -0400)
Change-Id: I9d8c6990cc29091a0fe829369d8462600a9713c5
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
51 files changed:
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronFirewallAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronFloatingIPAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronFloatingIPCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronMeteringLabelAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronMeteringLabelCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronMeteringLabelRuleAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronMeteringLabelRuleCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronNetworkAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronNetworkCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronPortAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronPortCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronRouterAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronRouterCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronSecurityGroupCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronSubnetAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronSubnetCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronVPNIKEPolicyAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronVPNIKEPolicyCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronVPNIPSECPolicyAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronVPNIPSECPolicyCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronVPNIPSECSiteConnectionAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronVPNIPSECSiteConnectionsCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronVPNServiceAware.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/INeutronVPNServiceCRUD.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronCRUDInterfaces.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronFloatingIP.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronLoadBalancer_SessionPersistence.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronMeteringLabel.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronMeteringLabelRule.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronNetwork.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronNetwork_Segment.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronPort.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronPort_AllowedAddressPairs.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronPort_ExtraDHCPOption.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronPort_VIFDetail.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronRouter.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronRouter_Interface.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronRouter_NetworkReference.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronSecurityGroup.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronSecurityRule.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronSubnet.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronSubnetIPAllocationPool.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronSubnet_HostRoute.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronVPNDeadPeerDetection.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronVPNIKEPolicy.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronVPNIPSECPolicy.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronVPNIPSECSiteConnection.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronVPNLifetime.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/NeutronVPNService.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/Neutron_ID.java
neutron-spi/src/main/java/org/opendaylight/neutron/spi/Neutron_IPs.java

index 0298b9440050b322067e4461b0499e6d940e29b2..434472ded9a8898e96f355520bd7350a23f61cfd 100644 (file)
@@ -17,7 +17,7 @@ public interface INeutronFirewallAware {
 
     /**
      * Services provide this interface method to indicate if the specified firewall can be created
-     * 
+     *
      * @param firewall
      *            instance of proposed new Firewall object
      * @return integer
index 23d2adac73c54a76e3d65c4149ec1e4cd07c306c..7b4c2f7d7c183ad115e0416a9f51639684fb7293 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index bd58fe4e20d60d966ab6d6bbbc265b140c2f0229..7e6fd0e7fb7f400c3f609624e95ba131b5d23b31 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 3dc0d19adc4ded160e57cdb5d15731d97ce12e0f..7eff1dd58dd0913c4c11b6c7b01cd41d53410d7e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index afcabdb0bd4baf9581611c6b28530e99fd2487f1..57669f3d998359e644fd19671f8fd550efe563ae 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015, IBM Corporation.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 2f655294547ed43c788a1ddb0326ef40b70b6dc9..e998547b510126623311559539315312e8e35276 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index db630131ff520cc3bd18e1b14424867297f270a5..35cbc405764a6f520be443a9d81ae8082d69355a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015, IBM Corporation.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 485eafda38cfe87772d2aee57e9f92d2649a1905..390436c15cf510af7ffba97c60edf3c18c2e4dea 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 236106a875a7fa7e5bc0610978117fa3e66dcf6a..7475b37e7fba620e1a32b69ae2ea6f0d5fdd1099 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index b10d72fc8f0e8d3f8164938db73b266016b09e8b..efce6eb7c3a674a36467850757e28faef7667d5c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 6a7bf681aab3ec9343afd23224aa572d92e2f113..753c2ce9171396851fb51dc0bbd071294c03fde3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 909283e3a54317c2c265281e2c0becfba4301ed8..285a19dcd2a197190cba31efbbddb7948559b98f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
@@ -79,7 +79,7 @@ public interface INeutronRouterAware {
     void neutronRouterDeleted(NeutronRouter router);
 
     /**
-     * Services provide this interface method to indicate if the 
+     * Services provide this interface method to indicate if the
      * specified interface can be attached to the specified router
      *
      * @param router
@@ -94,7 +94,7 @@ public interface INeutronRouterAware {
     int canAttachInterface(NeutronRouter router, NeutronRouter_Interface routerInterface);
 
     /**
-     * Services provide this interface method for taking action 
+     * Services provide this interface method for taking action
      * after an interface has been added to a router
      *
      * @param router
index 8010acf97ebea6b8f930b48c202877c29594f44f..761c77b2d3bb034097ebc5153628f529ea07d225 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 45caccb9a7d6ded36b2e1093376dcdb7f31972d3..129a13231e9278ee881c82b010297cab06bdbd21 100644 (file)
@@ -4,7 +4,6 @@
  * 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.neutron.spi;
index 13b2999d373a7ca5fafa20aca2d809007fe54cad..703fa758f7f662f616642fa299cd26516796beb2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 360aa92e8801f1cd6c48bb02fd53ef531abff3f3..87551b51bbe29efccfea1900dbf15ead20d1dac7 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 4c41f1b1854c3fab54b5238aa6a4f1ebe77282d3..b583e1e8dc890c6fc4a7539649ab38c6aae36ab1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 IBM, Inc.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 8f2a721fc7fff7a0e79516140c6930fb5d97cfe4..4921bdc6dbed8e290f26e9641d32496239750150 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 IBM Corporation.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 68fb48322e5b78c940db11cf3f4f6db6203c9a43..4f7232b38a3f841dfcbc04190d6295c0007c0a3c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 IBM, Inc.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index a335682601728302864bcee00d138bc1d6b055ff..87322576fe9243029c2f3275b5cf27dd7082a405 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 IBM Corporation.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 096edeaacb58a6f3e5f6e98831b04cc8ff10a345..46cfab3383cc7906bf195ae7aca120d2316788f0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 IBM, Inc.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index ffb4d73182768ba051a8e2ad8fc874c4975b9f49..d76384a2b5d7fd3c817b4ed7584649f87996a4f8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright Tata Consultancy Services, 2015.  All rights reserved.
+ * Copyright (c) 2015 Tata Consultancy Services 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,
index b6d7848da08e89961d2acdffba7ec524695d8284..e9172ac8bcd0860f2e190578dbee208ec48ff4d0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 IBM, Inc.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 3b992858a3301b763c8afc0068a9dcd7e3800572..1bbfa96703ad87cc418e9508c7e048de800ac86c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright Tata Consultancy Services, 2015.  All rights reserved.
+ * Copyright (c) 2015 Tata Consultancy Services 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,
index 341e9d460bfc787b5518e48d8599a1481ea9a872..bfb322f95c94361f17bc78dba3d6a00fe08228cc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 42feb6aa36bc7f90a06b84b0ca13b6efd68b5aef..d795260b6a882c9d7b3f0dd4c18802205b39a621 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 93d09e9d08f264f817247ff1b669098df249efd2..d542cd5e1ac8f05ccc6a94f985c64bcd96a6f239 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 21154b703234d03220a74d0a23e4ede6f163723e..03b663ee2ae8b1ed534ef51af06735849f54fbe9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index f5eda830c24e74bb62d742a087a5e95240e1292d..72234dd2a574a9f84d2192f2dbd955e1080a0913 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 3edd9d57a587227c92994271d01c68bcd0b23668..daed2fc25a0f2cc55f2ff845c26259d12f4c163f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 0e6e533a5f63d20d85bea2a00184b691babad223..76696338be134787944c484b3e6cb6a1433e5bee 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 9c9da79d74cc778496946131bb731b331ad833f5..9d2b5ae754437fb6faff37867269eac79ff4f14c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 50507de5edc61a44b165a783431872217b0fc24d..626a87032d96fa7720de4c351a1cb6eebc69899a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 39f9ac2b500ea38eef825254d5fdf5e83d963a32..e6e4ef3c299155ed080ca8104cad77c84b46becd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index d62fccacf90778003f3aed6ffb213a82e9107d81..df4cead52d6b0b89e2861a28fc7f0ab6260db7dc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 8ac4d5f20d0276befc21c4a81cf3843e4f074d0e..ac54e61e17c30b52a92eac58a947300d5b6429e0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 254d3ae19f303b650f28f16cdd33f4e25421194f..c331e1bb93e570618128e1fa3ef981ba56e4557d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 03c7c8a49ffe9da397b3cceb59e8e20009f34799..3f83c15a24d3773782981bfbde42cc4bc6ed221b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index bc85a6c233d96f8d2d5486a706d977165bc6a2f2..b2725eaec0f05379fc6d98565d2443656092027f 100644 (file)
@@ -4,7 +4,6 @@
  * 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.neutron.spi;
index fa9135efd4563fd11ce4a71fb3f3d3db5dfeba55..7519a80f7c508e911d1eb47677b44d3298372fda 100644 (file)
@@ -4,7 +4,6 @@
  * 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.neutron.spi;
index 73509c1830e61a26f68111019f37b97e61546d0c..407e659752594061ed3227ee1bc9ad75bbc23460 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation and others, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
@@ -87,7 +87,7 @@ public class NeutronSubnet implements Serializable, INeutronObject {
 
     /* stores the OpenStackPorts associated with an instance
      * used to determine if that instance can be deleted.
-     * 
+     *
      * @deprecated, will be removed in Boron
      */
 
@@ -275,7 +275,7 @@ public class NeutronSubnet implements Serializable, INeutronObject {
     public List<NeutronPort> getPortsInSubnet() {
         return myPorts;
     }
-    
+
     // @deprecated - will be removed in Boron
     public List<NeutronPort> getPortsInSubnet(String ignore) {
        List<NeutronPort> answer = new ArrayList<NeutronPort>();
index d91b5e96288290ff8b6a5817058e6f8a9efe28f0..5c01fb958a361517d87a758f9d7fd55f6ac61366 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index 01ad97af1c02a6c0cbdc4891d3c9d308b702d258..38cd3b0c1cf21129e0bb9db1b0b89b8170cab654 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,
index cf2c4fe78e899173b1a432c972aa3ad81f05cdf7..daaa415ab6903fe5273e540305ec7b1e704b84ea 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 7c0905e9a7a410e3bbee2f85437a64b5cad4757f..0a9a569437aeeb97305042cd3cf4a442f6c2cead 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index b9a0e684ad2c16323ae64a78d2d4d72b93fe6369..d9bfdb8bb13a0446e069e522376b7e0e4f84e83a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 47a6206c21f1fecbb7f6eb2986ff90dabe5b45bb..f4eda5fab9ad63a702f941ada4a832a749865880 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index af21cea56ce4d51b6c40490bda1a10561aab4e23..97cfd108d418cf588706ed31bfa52b783d871183 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 128ed39a9f49d8cf6e56d2654c6faa31cc5d0976..48bed69c88e5ce8f5e6c0949dce50ae6da649fb5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 4aae6690d16ac89e0411f1a7330cf112e9f3c1d7..de3a6989183eb682a1d433ceac85636589760138 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2015.  All rights reserved.
+ * Copyright (c) 2015 IBM Corporation 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,
index 8e7a846c754585e8e96c2b094befcc55bfea2e52..4a6b3f57a163c6c4879da1d65d7cf21304ee88a1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright IBM Corporation, 2013.  All rights reserved.
+ * Copyright (c) 2013, 2015 IBM Corporation 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,