Fix license header violations in library 26/25026/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Sun, 9 Aug 2015 15:54:30 +0000 (11:54 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Sun, 9 Aug 2015 15:54:30 +0000 (11:54 -0400)
Change-Id: I8f070f8841200bc6233d51b7d918625a44e25587
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
91 files changed:
library/src/main/java/org/opendaylight/ovsdb/lib/EchoServiceCallbackFilters.java
library/src/main/java/org/opendaylight/ovsdb/lib/LockAquisitionCallback.java
library/src/main/java/org/opendaylight/ovsdb/lib/LockStolenCallback.java
library/src/main/java/org/opendaylight/ovsdb/lib/MonitorCallBack.java
library/src/main/java/org/opendaylight/ovsdb/lib/MonitorHandle.java
library/src/main/java/org/opendaylight/ovsdb/lib/OvsdbClient.java
library/src/main/java/org/opendaylight/ovsdb/lib/OvsdbConnection.java
library/src/main/java/org/opendaylight/ovsdb/lib/OvsdbConnectionInfo.java
library/src/main/java/org/opendaylight/ovsdb/lib/OvsdbConnectionListener.java
library/src/main/java/org/opendaylight/ovsdb/lib/error/BadSchemaException.java
library/src/main/java/org/opendaylight/ovsdb/lib/error/ColumnSchemaNotFoundException.java
library/src/main/java/org/opendaylight/ovsdb/lib/error/InvalidEncodingException.java
library/src/main/java/org/opendaylight/ovsdb/lib/error/ParsingException.java
library/src/main/java/org/opendaylight/ovsdb/lib/error/SchemaVersionMismatchException.java
library/src/main/java/org/opendaylight/ovsdb/lib/error/TableSchemaNotFoundException.java
library/src/main/java/org/opendaylight/ovsdb/lib/error/TyperException.java
library/src/main/java/org/opendaylight/ovsdb/lib/error/UnexpectedResultException.java
library/src/main/java/org/opendaylight/ovsdb/lib/error/UnsupportedArgumentException.java
library/src/main/java/org/opendaylight/ovsdb/lib/error/UnsupportedMethodException.java
library/src/main/java/org/opendaylight/ovsdb/lib/impl/ChannelConnectionHandler.java
library/src/main/java/org/opendaylight/ovsdb/lib/impl/FutureTransformUtils.java
library/src/main/java/org/opendaylight/ovsdb/lib/impl/OvsdbClientImpl.java
library/src/main/java/org/opendaylight/ovsdb/lib/impl/OvsdbConnectionService.java
library/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/ExceptionHandler.java
library/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpc10Request.java
library/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpc10Response.java
library/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcDecoder.java
library/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcEncoder.java
library/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcEndpoint.java
library/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcServiceBinderHandler.java
library/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonUtils.java
library/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/Params.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/EchoResponse.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/MonitorRequest.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/MonitorRequestBuilder.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/MonitorSelect.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/OvsdbRPC.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/Response.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/TableUpdate.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/TableUpdates.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/TransactBuilder.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/TransactResponse.java
library/src/main/java/org/opendaylight/ovsdb/lib/message/UpdateNotification.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/Column.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/Condition.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/Function.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/Mutation.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/Mutator.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/OvsdbMap.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/OvsdbSet.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/ReferencedRow.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/ResultSet.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/Row.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/UUID.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/Version.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/json/ConditionSerializer.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/json/Converter.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/json/MutationSerializer.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/json/OvsdbMapSerializer.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/json/OvsdbSetSerializer.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/json/OvsdbTypesIdResolver.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/json/RowSerializer.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/json/UUIDSerializer.java
library/src/main/java/org/opendaylight/ovsdb/lib/notation/json/UUIDStringConverter.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Abort.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Assert.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Comment.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Commit.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/ConditionalOperation.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Delete.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Insert.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Mutate.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Operation.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/OperationResult.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Operations.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Select.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/TransactionBuilder.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Update.java
library/src/main/java/org/opendaylight/ovsdb/lib/operations/Where.java
library/src/main/java/org/opendaylight/ovsdb/lib/osgi/Activator.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/BaseType.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/ColumnSchema.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/ColumnType.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/DatabaseSchema.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/GenericTableSchema.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/TableSchema.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/MethodType.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/TypedBaseTable.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/TypedColumn.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/TypedTable.java
library/src/main/java/org/opendaylight/ovsdb/lib/schema/typed/TyperUtils.java

index 296a1817a4f0bfd587a2f5eee871c07c34b2b96b..767ed727ebfddbd1130aba190f9b5b7e939bb133 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib;
index bcd3a0f893f69a2fe5017785111230545cbe99fb..104bb99d379deda3b4cf598b64ec052a2b5678b4 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib;
index c5009d87905976ac0b7d1cfa17c46f16132b89f4..efb086ab59aa7101653eff76c2ea5889b3846be6 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib;
index 58faea1d117c32affc057961e010c13558d91c99..1f731d52245632a51dc22f4217fc9db12fa583df 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib;
index 06018725df2ebad87033b7d6d0821687655646cb..b8495fc654452c2a7fa5e435d3aa517a82478081 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib;
index 34310472f1f2a1fd3abcfda509e994db7af8976b..bcea62fa3baf3f674bef516d52adc63ce093773c 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib;
index d9280bc4492f5df3e442fbeee6f6dd9a8b8421ac..27e0e13efd8c050a9983bc2c5b3b6f99898d90ac 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
 
 package org.opendaylight.ovsdb.lib;
index c9a0045d502f656e93246afcb22aec22593ffb05..4b098fd8e61b608c40a1d55c0b7c502efa0e186a 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
 
 package org.opendaylight.ovsdb.lib;
index 76938e74576c5a8ace0595dd6a51d59110faa430..137aa9694ee96b26e5007a49a1a2c26c3252ad8e 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
 
 package org.opendaylight.ovsdb.lib;
index 6486a84c014a64a733721f8b0ceab11e97d1da04..7c974ad3bceec0267fc73c0974e006b487588288 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Dave Tucker
  */
 
 package org.opendaylight.ovsdb.lib.error;
index d71571251bde1bbf91a5a37b58b5977848c8be50..1579ae0b93be460d93862271f3f13294e8853a88 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Dave Tucker
  */
 
 package org.opendaylight.ovsdb.lib.error;
index 46ac93c172352469a2df9ba17bdf7b8602c8406c..dcb40deeae8f608d9eadeb1d2672e9e8f0b1a35c 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.error;
 
 /**
index 7b59a077b9990ce129c1b746569ff80fb87eab20..b8ef83c33ec50177d5cf62e510ad66cf40dc400f 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib.error;
index 07a6681dc3d6fdb79385fa150ea07cd7b277ebb4..a358245e037e934ed321ee8ef4e3143171a75f04 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Dave Tucker
  */
 
 package org.opendaylight.ovsdb.lib.error;
index edd86aa26e904b695eeee7b54aa99a42c4c08c03..2d66ba2e8926920a403af41b5ab13cefb89275ac 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Dave Tucker
  */
 
 package org.opendaylight.ovsdb.lib.error;
index 2028d29bf2f3b4a7588a972f4a6b446bb2b09a6c..151f00160783d8310bfc7aa42ecbc2086764ac0d 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Dave Tucker
  */
 
 package org.opendaylight.ovsdb.lib.error;
index 9c8e01c9a9ae98ec91534641aae978c90c92d44a..7409c4781be4e894cb6f76110d46028db076da41 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Dave Tucker
  */
 
 package org.opendaylight.ovsdb.lib.error;
index 3496655c15cecd3435d84ea9b0e62694bf1de67e..fd420be5b0ddd87daa63a95567dc98260a1a4033 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Dave Tucker
  */
 
 package org.opendaylight.ovsdb.lib.error;
index 0564dca51b9345f9a2e6184de19722819a37819b..8c9e315e50508b25fbadb26f7255fc4776ad554d 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Dave Tucker
  */
 
 package org.opendaylight.ovsdb.lib.error;
index ab3e82057cbb454359f0e34880a1c9d6f002392a..d4dfe59d177080cf8f0b21a2ea2a55e6fbfbd071 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 2015 EBay Software Foundation 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 : Madhu Venugopal
  */
 
 package org.opendaylight.ovsdb.lib.impl;
index 159f5d1bdc5bd8752d00885c424d0bd5c28d10ef..ab71482653d05b5a168225abbdea58599b87c6d6 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 EBay Software Foundation
+ * Copyright (c) 2014, 2015 EBay Software Foundation 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 : Sudheendra Murthy
  */
 
 package org.opendaylight.ovsdb.lib.impl;
index b1855e74b59ff64a4ab3a07fdbdeae728e282562..2fb2f3a669789392806a1fbe78a05ea2cea29248 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 EBay Software Foundation
+ * Copyright (c) 2014, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.impl;
 
 import io.netty.channel.Channel;
index 66cfbd597a50fbf1d0810e0e29e3115501123847..44f1ef028f3e2baa077f6a0bf9c5a9f65e92baac 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
 
 package org.opendaylight.ovsdb.lib.impl;
index 8efbf2163060754226d8b34549c376ffe74be172..8a932d3ddcc76060f4f5d8227086d153d368d301 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import io.netty.channel.ChannelHandlerAdapter;
index 7ecaf4badb0780a12a749cef0d3f354f07f32a2d..f4bff33a34579224b8c949d85a3e1c932e9a5b0e 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import com.google.common.collect.Lists;
index 5498557573c7cdb6420b4bbeb70be5a0e501d2d2..f8586ce70d49371676fc34547e70720a12ca9cd4 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import java.util.List;
index 853bdd374bcb506ee90ac223623d70acdf00e871..20f559465180c50be311e43cdb3968b68d7116c7 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 
index 94cddb0febf313857a49c93fd6be679dacc79132..44251f1d0f3f91d19596e978803c782fa3c47c7d 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import io.netty.channel.ChannelHandlerContext;
index 834884375848e4f307c3d22ad481f23965d872fe..2f664c0ec8f6a97f6d40a4849bfda27a8fa42558 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import io.netty.channel.Channel;
index 8363dc616a2d74f982f0c189fc2fdf61ff2097d4..73ba1cf40612ce937d7902113ee392802790c5c9 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import io.netty.channel.ChannelHandlerContext;
index 484c79e34a5e656bb61e8c582a757d7c3b7859d3..6b507139baf7dccdb862bf6b551c897a0b9d81e9 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 EBay Software Foundation
+ * Copyright (c) 2014, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import com.fasterxml.jackson.core.JsonProcessingException;
index ddb0054aa0dfd897b6e579edc71e46c777266b22..e647e99d87dd3adb267979897fa67868fb85c6b0 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import java.util.List;
index 90fbf64684b7e7a5447f53752e029d134466b428..bc359171efe410b9d5e4cb00da2fd4ed0b59a637 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.message;
 
 public class EchoResponse extends Response {
index 15480b71cd4bc42d24457069881b6f61469f43c9..c407a1115fb201077b7a20e13d9bdf8c48eacd25 100644 (file)
@@ -1,10 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation. All rights reserved.
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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.ovsdb.lib.message;
 
 import java.util.Set;
index 4fdf6d65b9ea32c9443065c91ca54f34abb2c8b4..a133cf392eff2d6974b1935cea141d46347e47d6 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.message;
 
 import java.util.List;
index de53e46ab862e4eef2e741b20b59bd86c059b42a..050aba4724f75b21ddfad71e95fdd887c2792ac9 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.message;
 
 public class MonitorSelect {
index 4666b7cb466cdb84fef1c5dad1fbf6de4df0bd00..adc9a4fae88172d8612f66edf4a580c29a442ec5 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.message;
 
 import com.fasterxml.jackson.databind.JsonNode;
index f3189c2c73a8d9cad9c980d0b7ad33b4269af814..ea057c0330627b9f2309989c5827686eeaa8a354 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.message;
 
 public abstract class Response {
index e7176f2933317dccfb885ae7fbaa0d72f50b6e8b..73497046b4c8a6a26edefa3dba266b87fd4c8258 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran, Madhu Venugopal
- *
+ * 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.ovsdb.lib.message;
index 91112eea5c6aa2c71084946315f88e369026f57b..c408fd81741bfed66a2efc952203ba2cd30473dd 100644 (file)
@@ -1,14 +1,11 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib.message;
 
 import java.util.Map;
index 7a92dd470f9435deef9a0e1156789fc9294c1aae..88186d57737714c6acc61bfe009adb4eae569169 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.message;
 
 import java.util.List;
index 1ea92e4ab874a4d35f79670b611f4081479c48aa..0875ae5e77f77fb357f64cf14c03d0362ebb3e01 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.message;
 
 import java.util.ArrayList;
index 6a084e1876282fd5fa4e0dfd3b64883c9b6c41be..f4a22c34df6bb13a7cdb38ebf8137f474d32b42a 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.message;
 
 import org.opendaylight.ovsdb.lib.notation.json.Converter.UpdateNotificationConverter;
index fa50aeb316b0d7c9512b5062da45b5214bbc01d4..ebd231042a74ddf3426a5ce3e4af5e74a8302c09 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib.notation;
index 839efe602d285332246dad4b31f39c5544c5bb8f..88c01c926a8459d5b0f979d499580d5d1ddce8bd 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation;
 
 import org.opendaylight.ovsdb.lib.notation.json.ConditionSerializer;
index 76a31bb058d8dcf9247c061ae6a94b38203da4ac..49b6e7d34be6299238133fa410e67ffe85b405d8 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation;
 
 public enum Function {
index ab7a68cd2b3af6e5a2ae7955a43d4ffd27358185..6f2df79f8ab5b10285673915e994469ffcbbd3a3 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation;
 
 import org.opendaylight.ovsdb.lib.notation.json.MutationSerializer;
index 2c7728abf98de9e40e94f0263cf54d2fb3d14f53..a3b0a493ff863025e7a6f2a5f38e63d57d606a53 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation;
 
 public enum Mutator {
index 35fa4eb02e95bfc896fba9af25c89227e1c6d76a..6aaae6c3acd84066b94f97ae84cf968bb5185606 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation;
 
 import java.util.Map;
index f67a8bdf3e7006f5fa4e9f98e9676de47a170844..59cf1027bece50f58e8ceab1b21b48bd3b171c87 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation;
 
 import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
index f8d09d59188eb709b779ac7bb34bb9c05750e97e..34f1e62e8be5df31848dc1aba62e91be043eabea 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc. and others
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
 
 package org.opendaylight.ovsdb.lib.notation;
index 6de67210632c1208ae47b5944090c8837a09789a..ad8f18a4261b5b38b0895e9d1b6d51e312942af2 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib.notation;
index 9fddf553bad24564cde806461d5282d1d7bdfb8e..e80b3c8bdc7a6e2203d566e0c43d2a64d1e84ea4 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran, Madhu Venugopal
- *
+ * 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.ovsdb.lib.notation;
index 910e4195430aae355864ed484a6ca66d2120c6b2..1276078234bd74deebd8f66cd86c25228d0e1714 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran, Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.notation;
 
 import org.opendaylight.ovsdb.lib.notation.json.UUIDSerializer;
index 267d7f553332191e43e47ef617ea1e096d1efadc..1111e34a65b34d658c77a0de03511afbed387c8a 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Dave Tucker
  */
 
 package org.opendaylight.ovsdb.lib.notation;
index f4fa949321d27ea2b009e1d2ede022e2bc1a21bd..bc518941e1c1184b79fff6d246c9d8853e366e38 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation.json;
 
 import java.io.IOException;
index 63a4646283c5599c8b60e105746b395ee9e4a126..c0bce1b7eed630f8566038803cec2e0e412b1840 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 EBay Software Foundation
+ * Copyright (c) 2013, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation.json;
 
 import org.opendaylight.ovsdb.lib.message.TableUpdates;
index adbe9fc33fdac492166f8ed0ea212e7967eb3c9d..2bc56694495df380d9a0b10712d4c335e7c2901d 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation.json;
 
 import java.io.IOException;
index d2b08e64c2247b6418a236d769f0dcd08f4cd29f..b184725e268f5be0b552ebf5998c6879251d2bb8 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation.json;
 
 import java.io.IOException;
index c768d4881cff19aa2a708536a6a8c0193a8688d4..6675ba8060b3f5ee24ddf3d6f33398a6f53d2080 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation.json;
 
 import java.io.IOException;
index 3675d4a2eeec0eda829dce7e6b9f797fb70a352f..b4e43e7c7370595d4d3de754963fd47ec74b667f 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation.json;
 
 import com.fasterxml.jackson.annotation.JsonTypeInfo;
index dc9c504c9fffe093fa7fcc75bb773377851b55c3..136ff728aab6332cc6f6599761b29b2525edb3c8 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.notation.json;
 
 import java.io.IOException;
index 0cc562567590d0134ff542ddb985af6565222e88..04ccb312e593e983707faf6f3bcd437aa8587d4c 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation.json;
 
 import java.io.IOException;
index 1a3c5a2c84c04a3d4da037cc42c50a42eddef353..c2952cb49d16152033178f57793ce9238946614b 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.notation.json;
 
 import com.fasterxml.jackson.databind.util.StdConverter;
index 78c4b54abd10dc23f453ae86abcae28e0c256de9..b299a73f1a8ce2b1bb763a28587142400a443761 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.operations;
 
 public class Abort extends Operation {
index 2d3e291b3a3b53baffa4343b1be286c226fb7b00..c89f87b544070b3cd841763b75b035d6e47c740f 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.operations;
 
 
index f2a6ba5d22f8c6c0ca39de319559246cca44c0e8..8962b5e84088618f2aa28b6ecdcd4cf81c51d817 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.operations;
 
 
index 19ddd8dd8087e9b1a9e1e51cb5be85beecb1b5f9..4314e3985af50bf1ab39838c7b5c4083fc502e4c 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.operations;
 
 
index bc77dcd4052b23fd23da83b9c3ec9e52d5fc8e77..fb6ea1cd73e75454a6839dc8dffc268c01e38b21 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 EBay Software Foundation
+ * Copyright (c) 2014 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.operations;
 
 import org.opendaylight.ovsdb.lib.notation.Condition;
index 326b20e36b6f07b7af31e448e392fd7bf95a73ca..82a743faa359efdd4cc9ea7c6bd915ec921e4bf8 100644 (file)
@@ -1,12 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat Inc,
+ * Copyright (c) 2014, 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 : Dave Tucker
- *
  */
 
 package org.opendaylight.ovsdb.lib.operations;
index e07cf71c675d12e4ec21a168e87354c94aad5d49..08037f80e7867f727600435bd988b6c16ff7d561 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 EBay Software Foundation
+ * Copyright (c) 2014 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.operations;
 
 import java.util.Collection;
index b26cdf3e4835a386a014dde747a830c60119ff7d..1dee30e2db02005c132dd38da76b9a1c65ea92fc 100644 (file)
@@ -1,12 +1,9 @@
 /*
- * Copyright (C) 2014 Matt Oswalt
+ * Copyright (c) 2014, 2015 Matt Oswalt 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 : Matt Oswalt
- *
  */
 package org.opendaylight.ovsdb.lib.operations;
 
index 00156aa9364d606a806cc10d9e3244c8d83c65ff..ea5b950081899e02a14625fced30e412f38a3eb7 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.operations;
 
 import org.opendaylight.ovsdb.lib.schema.TableSchema;
index ea1a4a2b8976071e8eac4d8029197306fde96828..3c19e6afba14942338262b324457e5d12ff7aaa8 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.operations;
 
 import java.util.ArrayList;
index 81bb3876d9fbd356a431f76b3ba0c4335ad88342..63f050d26a46bd087715efccdcbd3eb789222f8e 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib.operations;
index 85329a91041d4fe48e1c02433708b17ed37e6029..fbc25e02da118e6c2c92373ebfd2c5765317b06d 100644 (file)
@@ -1,13 +1,11 @@
 /*
- * Copyright (C) 2014 Red Hat Inc,
+ * Copyright (c) 2014, 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 : Dave Tucker
- *
  */
+
 package org.opendaylight.ovsdb.lib.operations;
 
 import com.google.common.collect.Lists;
index 1dc2210f8a7fe4dc43bf8f269ae7bc4f09fece01..a59c749b54043577f87645d8c1b1ee7bbc817f37 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib.operations;
index ed52c956cf111c53f01b2e188356924144b3dcff..9d1695a66c5e1bec7b7f1d39fed326ac62c5eb16 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib.operations;
index de2894bacce0c74f880bd3925f87e968655884c8..a4b51f47977f37b3e1f5b070bf85b7f4e3f24f26 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib.operations;
index bb791900ecb4cc112c2e63e14e2ab9adcb0812ad..d1b66a3bfcc6daee39f5fd62d2e3b43d472cc8ce 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2013 Red Hat, Inc.
+ * Copyright (c) 2013, 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 : Madhu Venugopal, Brent Salisbury
  */
+
 package org.opendaylight.ovsdb.lib.osgi;
 
 import org.apache.felix.dm.DependencyActivatorBase;
index da5fde665e0332da62442e9b2d4fd63b56742082..7a348cdb0337dbc112e026f7ca7850a21392d144 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 EBay Software Foundation
+ * Copyright (c) 2014, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.schema;
 
 import java.util.Set;
index cf5664d19a2575d7ba5dcba82f6ad80b13781b46..1db19b6595240579c4efa2b4a0be44bf62faf904 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 EBay Software Foundation
+ * Copyright (c) 2014, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.schema;
 
 import java.util.Map;
index a0d59dc2e972f79214c11aa8f9c041b78935549d..85c4417eaa2127dbd3d1b5d21f163f90da1be88d 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 EBay Software Foundation
+ * Copyright (c) 2014, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.schema;
 
 import org.opendaylight.ovsdb.lib.error.TyperException;
index e4943030c3874564fc8fb8e3fced8c16b81c9024..34b12e0e0763af030146556265163d5f6a14868c 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 EBay Software Foundation
+ * Copyright (c) 2014, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.schema;
 
 import java.lang.reflect.Constructor;
index f01b917d526c105fb24babe26c4a7180a372a293..95f82a738360b5f3d74a3599a6a59041c52d4f56 100644 (file)
@@ -1,13 +1,9 @@
 /*
+ * Copyright (c) 2014, 2015 EBay Software Foundation and others. All rights reserved.
  *
- *  * Copyright (C) 2014 EBay Software Foundation
- *  *
- *  * 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 : Ashwin Raveendran
- *
+ * 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.ovsdb.lib.schema;
index 066756bd78c24487ab8a8c338ce10d47549aafea..04e8fb0ea9024376a24609f04c524a97ef1d661d 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 EBay Software Foundation
+ * Copyright (c) 2014, 2015 EBay Software Foundation 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 : Ashwin Raveendran
  */
+
 package org.opendaylight.ovsdb.lib.schema;
 
 import java.lang.reflect.Constructor;
index d729590351918def890432a6ccf61a52b1100539..db0f2236565ee566ecdd0a0cdc9b19d6655ab6e5 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
 
 package org.opendaylight.ovsdb.lib.schema.typed;
index 63dd3f2f167b2d6bcb27ba5f1ad34a8c5f57fc16..4f63e0621d7d076401e9f48d834b196d15e8ec74 100644 (file)
@@ -1,12 +1,11 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
+
 package org.opendaylight.ovsdb.lib.schema.typed;
 
 import org.opendaylight.ovsdb.lib.notation.Column;
index 13df4376a2f7ba865720d42aa3085a8419111f48..4c9348a1faeaab99981e26aca3cb148fe678f091 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
 
 package org.opendaylight.ovsdb.lib.schema.typed;
index 92372f8dc60465431f01f0dadba1f09e7de2f5b2..8b569813bda0236de84d7bf102f25170cb54853d 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
 
 package org.opendaylight.ovsdb.lib.schema.typed;
index 114f3b3865e177ed5ec26281c17ab21388b1ac38..934639f34a0fcbf0fcb1e8b1fd92ae18be568594 100644 (file)
@@ -1,11 +1,9 @@
 /*
- * Copyright (C) 2014 Red Hat, Inc.
+ * Copyright (c) 2014, 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 : Madhu Venugopal
  */
 
 package org.opendaylight.ovsdb.lib.schema.typed;