Merge "Changed lookup of Controller IP to the following: - Start with OVSDB config...
authorMadhu Venugopal <mavenugo@gmail.com>
Tue, 17 Dec 2013 00:03:29 +0000 (00:03 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Tue, 17 Dec 2013 00:03:29 +0000 (00:03 +0000)
124 files changed:
neutron/src/main/java/org/opendaylight/ovsdb/neutron/Activator.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/AdminConfigManager.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/BaseHandler.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/InternalNetworkManager.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/NetworkHandler.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/PortHandler.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/SouthboundEvent.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/SouthboundHandler.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/SubnetHandler.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/TenantNetworkManager.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/provider/OF10ProviderManager.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/provider/OF13ProviderManager.java
neutron/src/main/java/org/opendaylight/ovsdb/neutron/provider/ProviderNetworkManager.java
northbound/ovsdb/src/main/java/org/opendaylight/ovsdb/northbound/OVSDBNorthbound.java
northbound/ovsdb/src/main/java/org/opendaylight/ovsdb/northbound/OVSDBRow.java
northbound/ovsdb/src/main/java/org/opendaylight/ovsdb/northbound/OVSDBRows.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/database/ColumnSchema.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/database/DatabaseSchema.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/database/OVSBridge.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/database/OVSInstance.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/database/OvsdbType.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/database/TableSchema.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/database/Uuid.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/ExceptionHandler.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/InvalidEncodingException.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpc10Request.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpc10Response.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcDecoder.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcEncoder.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcEndpoint.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcServiceBinderHandler.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/Params.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/EchoResponse.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/InsertSerializer.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/MonitorRequest.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/MonitorRequestBuilder.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/MonitorSelect.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/OvsdbRPC.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/Response.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/TableUpdate.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/TableUpdates.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/TransactBuilder.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/TransactResponse.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/UpdateNotification.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/AbortOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/AssertOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/CommentOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/CommitOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/DeleteOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/InsertOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/MutateOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/Operation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/OperationResult.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/SelectOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/UpdateOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/WaitOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/Condition.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/Function.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/Mutation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/Mutator.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/OvsDBMap.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/OvsDBSet.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/UUID.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/json/ConditionSerializer.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/json/Converter.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/json/MutationSerializer.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/json/OVSDBTypesIDResolver.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/json/OvsDBMapSerializer.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/json/OvsDBSetSerializer.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/json/UUIDSerializer.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/notation/json/UUIDStringConverter.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/Bridge.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/Capability.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/Controller.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/Interface.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/Manager.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/Mirror.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/NetFlow.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/Open_vSwitch.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/Port.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/Qos.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/Queue.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/SFlow.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/SSL.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/internal/Column.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/internal/Table.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/table/internal/Tables.java
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/Activator.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/ChannelConnectionHandler.java
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/ConfigurationService.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/Connection.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/ConnectionService.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/Encapsulation.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/IConnectionServiceInternal.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/IPAddressProperty.java
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/InsertRequest.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/InventoryService.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/InventoryServiceInternal.java
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/L4PortProperty.java
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/MutateRequest.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/NodeConnectorFactory.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/NodeDB.java
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/NodeFactory.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/OVSDBConfigService.java
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/OVSDBInventoryListener.java
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/OvsdbMessage.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/ReadService.java [changed mode: 0755->0644]
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/StatusWithUuid.java
ovsdb/src/main/java/org/opendaylight/ovsdb/plugin/UpdateRequest.java [changed mode: 0755->0644]
ovsdb/src/test/java/org/opendaylight/ovsdb/lib/jsonrpc/NettyBootStrapper.java
ovsdb/src/test/java/org/opendaylight/ovsdb/lib/jsonrpc/TestClient.java
ovsdb/src/test/java/org/opendaylight/ovsdb/lib/jsonrpc/TestTokens.java
ovsdb/src/test/java/org/opendaylight/ovsdb/lib/message/MonitorResponseTest.java
ovsdb/src/test/java/org/opendaylight/ovsdb/lib/message/OVSDBNettyFactoryIT.java
ovsdb/src/test/java/org/opendaylight/ovsdb/plugin/OVSDBTestGetBridgeDomainsIT.java
ovsdb/src/test/java/org/opendaylight/ovsdb/plugin/OvsdbTestAddBridgeIT.java [changed mode: 0755->0644]
ovsdb/src/test/java/org/opendaylight/ovsdb/plugin/OvsdbTestAddPortIT.java [changed mode: 0755->0644]
ovsdb/src/test/java/org/opendaylight/ovsdb/plugin/OvsdbTestAddTunnelIT.java [changed mode: 0755->0644]
ovsdb/src/test/java/org/opendaylight/ovsdb/plugin/OvsdbTestAddVlanIT.java [changed mode: 0755->0644]
ovsdb/src/test/java/org/opendaylight/ovsdb/plugin/OvsdbTestBase.java
ovsdb/src/test/java/org/opendaylight/ovsdb/plugin/OvsdbTestBridgeConfigIT.java
ovsdb/src/test/java/org/opendaylight/ovsdb/plugin/OvsdbTestDeletePortIT.java
ovsdb/src/test/java/org/opendaylight/ovsdb/plugin/OvsdbTestSetManagerIT.java [changed mode: 0755->0644]
ovsdb/src/test/java/org/opendaylight/ovsdb/plugin/OvsdbTestSetOFControlerIT.java

index 147257c097a2125f1b6327dbb28a023e0b3427e0..e258346b3cb7af45faa5bafd030fb49985357412 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron;
 
index f6556fb6ba1d4c1e13804af4f98497821e68f8de..adfd5813cf053bcd33b7965d0a03ba52001643e5 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron;
 
 import java.net.InetAddress;
@@ -157,4 +166,4 @@ public class AdminConfigManager {
             logger.error("Error populating Tunnel Endpoint for Node {} ", node, e);
         }
     }
-}
\ No newline at end of file
+}
index c9eb7716c69364b617a312565b7906fdc4e65879..71480a29928b1977ed16f9b46d6dd6ff6868622b 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron;
 
 import java.net.HttpURLConnection;
index c94fbfe9d185dcad8979a4e2939eb6377dc0798d..cf6272dffdcaba7945f01c9994feeb702999e9a6 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron;
 
 import java.util.ArrayList;
index 72ba5c21458a1ebab9415e0fd7994be11bede2f1..ca7a65a059b78f93147940a7c1036dd2d41a1685 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron;
 
 import java.net.HttpURLConnection;
index d92391357c9972a944ba0db2d8dbb0ebabfd9d11..538912e21bbf7674150bdeb093c2ecb9b7a70e3b 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron;
 
 import java.net.HttpURLConnection;
index a6da759f7004177e974f0269638c15cbeb327c3a..df3b734d8fcaba5e641d10bff8d4073ecb617cc4 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron;
 
 import org.opendaylight.controller.sal.core.Node;
index ace85333a61c2a15f26fb73769ab8344c762aa5b..9f410e5d33d1ecc656e94f822420e58469a64782 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron;
 
 import java.util.Map;
index ec5c850f542350ec05bb8e5b6ab31a04b0f61797..eeb58371cd79034b4c1aecfdfba0cc6253f15b19 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron;
 
 import java.net.HttpURLConnection;
index f5d23840faf0ab04c31f16dd2de2131d06d50cdd..d710ae8982586b9c060350778984586c9c63c39d 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron;
 
 import java.math.BigInteger;
index d36aea97ed2dc82d315602ea370276c5e5b6fb95..f5885bc4da6342531121a178fd7641d70388e0b0 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron.provider;
 
 import java.math.BigInteger;
index f4ec73b51c7dc3bd9230ba3e144cc9885156bbcf..998915c10077aa714c7681fce42c88d374f3369a 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron.provider;
 
 import org.opendaylight.controller.sal.core.Node;
index 601a860339da1413ba23ee1386486e476d446259..76d64caf0da8f31b8d1441709fb77523fcd3924f 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.neutron.provider;
 
 import org.opendaylight.controller.sal.core.Node;
index 4970e29d56efe77340bcce5a465a205c3229ef4a..f82c6c92d94beba9819c1d8e982a389de3acbfa8 100644 (file)
@@ -1,9 +1,11 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (C) 2013 Red Hat, Inc.
  *
  * 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.northbound;
 
index 403b2739d58b2e188cbc7f043e95a09c5a1dc6f1..5bdb3c8ff187bd10400bee5b9c6951ee1f141e82 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.northbound;
 
 import org.codehaus.jackson.annotate.JsonSubTypes;
index 223535892ef58854624e2e0f7d6116032070a897..0632c87cb1b9d11d0f8e850db8bcd58984e7e2d2 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.northbound;
 
 import java.util.Map;
old mode 100755 (executable)
new mode 100644 (file)
index 6291b7a..2067eab
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.database;\r
 \r
 import com.fasterxml.jackson.annotation.JsonProperty;\r
old mode 100755 (executable)
new mode 100644 (file)
index e7ee92a..5ddd41a
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.database;\r
 \r
 import java.util.Map;\r
old mode 100755 (executable)
new mode 100644 (file)
index da787e9..5ab9b47
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.database;\r
 \r
 \r
old mode 100755 (executable)
new mode 100644 (file)
index d6dec13..f5fd724
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.database;\r
 \r
 \r
old mode 100755 (executable)
new mode 100644 (file)
index 317acf3..dafc5a4
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.database;\r
 \r
 import java.util.Arrays;\r
old mode 100755 (executable)
new mode 100644 (file)
index fed3bab..7efc02a
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.database;\r
 \r
 import java.util.Map;\r
old mode 100755 (executable)
new mode 100644 (file)
index c871111..e08af5f
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.database;\r
 \r
 import com.fasterxml.jackson.annotation.JsonProperty;\r
index 8d7830256dd73827fef472314a275ceaa511200e..b0f6d24d959c628e609afd129b08934f9a2c2bdc 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import io.netty.channel.ChannelHandlerAdapter;
index 8580f34297bb04e9aba766069b67cb83df68b16c..26e0146f26d0fd890efa55c05ea0f67b147fd014 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 public class InvalidEncodingException extends RuntimeException {
index 4c98a7c6b72daa098e4a6e543d34f3187fffcd64..d1fa2ce26a9e4d092dca0f6fa2e4374d39a05693 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import com.google.common.collect.Lists;
index b13366dafd695d9552c53460b36af78470b73e0a..013185659fdccce336abcc03b206e22690268189 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import java.util.List;
index 59b39787034fe25f89486fbae9647e02ee5de3da..0c909367f38061721e30039c27b3ddc255d4712f 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 
index 1b503cd88f8d373b33c43d76222309399442b37a..94cddb0febf313857a49c93fd6be679dacc79132 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import io.netty.channel.ChannelHandlerContext;
index 62b2b9bfda1c35a81fe3231add1076a6948c1c21..8357342b4fb5eb4d657a82514aa05593b9e122e9 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import io.netty.channel.Channel;
index de1454cd265919be7baee4351d630c917cea383c..46841a37da120647164f026e7e181f9113644acd 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;\r
 \r
 import com.fasterxml.jackson.databind.JsonNode;\r
@@ -56,4 +65,4 @@ public class JsonRpcServiceBinderHandler extends ChannelInboundHandlerAdapter {
     public void channelReadComplete(ChannelHandlerContext ctx) throws Exception {\r
         ctx.flush();\r
     }\r
-}
\ No newline at end of file
+}
index 89859bce390656fef7a1133dd47d245586a4fd57..a8610f929b67b69dbdda877eb523b5faf024ae7d 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import java.util.List;
index 2a28e67aefcbb41befac77294daa81e93b640673..90fbf64684b7e7a5447f53752e029d134466b428 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 public class EchoResponse extends Response {
index 4732f2c8f70c37907b5fe7e6ef00138154a8982a..68e09acfb7acc9209c5e07a9d56e92bf6db0d586 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import java.io.IOException;
@@ -19,4 +28,4 @@ public class InsertSerializer extends JsonSerializer<InsertOperation> {
 
         generator.writeEndArray();
     }
-}
\ No newline at end of file
+}
index e1596a987474f0020be09ea08823053b1d4679b0..99330b087f03b078caea6b018caf887ea25befc3 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import com.fasterxml.jackson.annotation.JsonInclude;
index e633c339301a177feb302e54763dce9b9add522d..ac4bf4f85ecaf0cf03e9d446bbb3459ee19f7884 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import com.google.common.collect.Lists;
index b1c0c98100562ef53a5d769d91673c3b06c3d68c..eb15498356e77ef0665fba08ab50d391d16ada46 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 public class MonitorSelect {
index ad17b3c4932cd5cd417c1fe15154087dd1a148be..3e2ac3250cfca1f9ef306a3f4d6e9b8e13a8c7eb 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import java.util.List;
index 23b5031783102d99b52c65a72eb01c513009a7f3..f3189c2c73a8d9cad9c980d0b7ad33b4269af814 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 public abstract class Response {
index 72e4af10fa6472e7f6af7455e8fd031dc0d079e8..b0697bb4b7998696820d14f5a9fa66dfb34379fb 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import com.fasterxml.jackson.annotation.JsonAnyGetter;
index 766d6f5b0b8d4de136d2d8f82fda2bd495bb72c7..6311666c9a67b7b6845a9a31fd550c7f9f7584f2 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import com.fasterxml.jackson.annotation.JsonProperty;
index 1ddba2cd925a569cc1b2f6c2c42be92322f74de6..2c937ed7a3eb5416a27e039702f06f06d78222f0 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import com.google.common.collect.Lists;
index 67dbd9da187146cb44264df25858d3dcd02000df..279ea60d8a1960ce265e7e2d77a6044bd14ad71c 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import java.util.ArrayList;
index f9f077888f0b48f394cfcb11f0aa3000c5c696b3..07390cf0b35c7a1ff18e927aa4abf29636e2f3a6 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import org.opendaylight.ovsdb.lib.notation.json.Converter.UpdateNotificationConverter;
index acb52a13715a4e2721e63bd33114f020d1532491..f6f485332f842eae10c5356c32926b47626273eb 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 public class AbortOperation extends Operation {
index b42f5ad67565a3652ca3696a1b063885ec2da2d8..0c9bde3041fa3e8e5935b0a1c3599c8c683cec1e 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 public class AssertOperation extends Operation {
index ccd1052e6dec5dbf71216962ef2b765eeffa32a1..cf38369c54ce24e3a5cf1b329fe18aa0435839e8 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 public class CommentOperation extends Operation {
index 82a854e9163623942e4ff2e59f456305a949f6c5..e717ca2a5d13fe37ccc38e17168a467fa785cc9f 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 public class CommitOperation extends Operation {
index 4c478ce5dd600424b8ee1035b3a1801a2dff73ca..612a5ebd1f43d89731bd27c0419936c4062a6948 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 import java.util.List;
index bb3071f840572c80522c03bf8d9f22a83417496f..b651a645fccbcdb5ec838839d30eb22830323cbc 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 import java.util.Map;
index d9101fd8772dc66f4518aff7d20311c1482f42e8..72ab481da2dffe8c86f129f661d31f81de79a897 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 import java.util.List;
@@ -5,7 +14,6 @@ import java.util.List;
 import org.opendaylight.ovsdb.lib.notation.Condition;
 import org.opendaylight.ovsdb.lib.notation.Mutation;
 
-//TODO Madhu : This is not complete. Getting it in to enable other committers to make progress
 public class MutateOperation extends Operation {
     String table;
     List<Condition> where;
index 1e9d33d3bafd8a1936c21f45bc6868586c5d9e9b..856e74f94cd1a1f46e7853c2d59f668a674fbd9c 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 import com.fasterxml.jackson.annotation.JsonIgnore;
index eb39c1bb007e7fb1c2a1bca4610fdb7dc0142406..e019394894b497ebf61052d2352d5a52f388be9e 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 import java.util.ArrayList;
index cc0947ee0e0f854b365dcb5595a4dcb85a5362d0..edcfb2a949a9ebe2ead66f038c9c9359e6b46a86 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 import java.util.List;
index 5a89ef95afdeeb198de44075c1a64b6d3c7f5337..e676f613ae1d20d54f2e50f1db33f38a3d6af875 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 import java.util.List;
index 170585d840258a0d08f7a9d5f3afa21e22e84b39..49ecd5bf6b58e184ec26cd4fcc0af31733bab509 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.message.operations;
 
 public class WaitOperation extends Operation {
index e6545b6243c68e2369d26f36860bda869cf45ba2..199d67d4dc429a2f2ee5c953e452bf4e6c841824 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 62ca20ca33b818a972fb8ee266c5659fbfcfc3e1..76a31bb058d8dcf9247c061ae6a94b38203da4ac 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 bd802aed23e3b4553880c312b0e7266540ba2e48..5d5556c02aaa06f04e4c5c49ee5ac9381038d2e2 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 f1ad51b8083d2a65920f932194d6d9bf70734b6f..2c7728abf98de9e40e94f0263cf54d2fb3d14f53 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 6fcca29b4939adcf74190ac35b8ada55c24a1a9b..39e241a7f37eb3f83b797c4bdd5801c55f2712c4 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.notation;
 
 import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
index 78d27e574ad2475c478f7a15f1b98cbd105227d0..210083a253a838a80fc1de2051481e4030832e07 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.notation;
 
 import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
index a1aefaddf503fafe6268df2093fec57cf7a8d8f2..0d032afdd1b50b06c4986ec54f94d2c7a3e9af45 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.notation;
 
 import org.opendaylight.ovsdb.lib.notation.json.UUIDSerializer;
index 11f343ece81e58497814a6662466c6840de3240c..f4fa949321d27ea2b009e1d2ede022e2bc1a21bd 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 507601dbf2283f2b11f583c8e490b045d9d438e4..dcad62bcbe05715bc2662cc925bd8c8bf0b14baf 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.notation.json;
 
 import org.opendaylight.ovsdb.lib.message.TableUpdates;
index 79e511769c994f62e1ef9538781a807997f7a5b4..adbe9fc33fdac492166f8ed0ea212e7967eb3c9d 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 9c18e8173d745a36fa9a2e3390ca7a3727ab92a1..37962eb5aa1f5d7a73f789dc546c6c64e0933c9f 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 2b638dcb334990c05757a2993e67fbeae9c8792e..7bbc1203fcfb34c646d42da3aa813a67d1bbe355 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 b70876e0b375e9edd0b72000151e2f9c6ecf063e..42293584faee390f83ebb3566de4ee895861d895 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 6fa5af1da96d0e3ada23d6b00efcc22ec9fba124..0cc562567590d0134ff542ddb985af6565222e88 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 4a65d063513b74c8e4aaa6d2ece2f8f2ffea91f4..1a3c5a2c84c04a3d4da037cc42c50a42eddef353 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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 d6c7cc8aad07122f09757791783e0b2704d3f888..cfa38637761a95e959c1f712405354859c1ee70d 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import org.opendaylight.ovsdb.lib.notation.OvsDBMap;
index 782ba8231e449abbcd0d3455eb007db36e3c031c..b431a2cee3b361e9627465d088b077af774d00bf 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import org.opendaylight.ovsdb.lib.notation.OvsDBMap;
index 31f6e203f6510a03388a1b439913297341371ee0..2225667f61d86ebaed5e79ffc55e5c2d9fe7105a 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import org.opendaylight.ovsdb.lib.table.internal.Table;
index cb29b1b7291c24eef9bca017832998df89128278..4ea314d06940e424a9805281580c2f2285482473 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import java.math.BigInteger;
index 16c35a93dccb310e5f2715faa64a1230008ea413..f581db8a4cd664154e89190cc0ccc2c3eaa656c4 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import org.opendaylight.ovsdb.lib.table.internal.Table;
index 0d43c9920d6d622a2ef38b02259d78ee7a38adeb..d52c2bfb0aaef598ba79d56f732f5f0b649b53fe 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import org.opendaylight.ovsdb.lib.notation.OvsDBMap;
index 5439765a2deb25e31f5a159be78eda3fe981eef7..ed57e1f35919d3457083e8516e2a5c3fc0e0a5b1 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import org.opendaylight.ovsdb.lib.notation.OvsDBSet;
index 446e9393437b494761531bfaeda3723dd3d37ca3..ad5cec3d3a53ae1731d1756b3335f4546fc3a6db 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import org.opendaylight.ovsdb.lib.notation.OvsDBMap;
index 5241175b76a8158a41456e9bbf94d1673c38b699..83f58f857072c1042b1500bb1fe8899c96673298 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import java.math.BigInteger;
index 6ef0342e37a70f34dbc51b4f4d3fb02b57dded75..31362a5284e2144f4a26eccf490cbcb9568b8c6d 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import java.math.BigInteger;
index 0e63d622a7ace685b3ae327f5c27b954805bbd53..88528d41abf0c7f7b70e6b745227b292b05a5a56 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import java.math.BigInteger;
index 116ad540c61aed12845d65f931cb1d53feb5d0b8..27f1cb7bd91557979e43032dfdf3b67d6dcd830c 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import org.opendaylight.ovsdb.lib.notation.OvsDBMap;
index 1c0ee155c84f7d65d7d9f36fd8d408154b25f0c0..e252ac6162bda5435c2e6f50e516c3a5ebc068f6 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Evan Zeller
+ */
 package org.opendaylight.ovsdb.lib.table;
 
 import org.opendaylight.ovsdb.lib.notation.OvsDBMap;
index 21927c6e9f597bf830c388cfac2d2f1da072401f..5d8645ac10a78f5af0e1f0c5978817f4c73f5614 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.table.internal;
 
 
index 429f59a5e5f1d35ef2ffeb83fd68c0f7f1a3315b..16304e06453f1092178191f7ed2e6ba4b465f4af 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.table.internal;
 
 public abstract class Table<E extends Table> {
index 4244d36c38f72f76193904a4f220f856cb93f7be..30f7635508e7e2c8adbb2316ec9b6d004239d79d 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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
+ */
 package org.opendaylight.ovsdb.lib.table.internal;
 
 import java.util.ArrayList;
old mode 100755 (executable)
new mode 100644 (file)
index 1c8b4a1..5df971a
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import java.util.Dictionary;
index 2e2ab047ccdc89c3666160d260bfbf3464cb0a71..776695b56c3b5fe7923297ca0a2ffd84a32472c9 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import org.opendaylight.controller.sal.core.Node;
old mode 100755 (executable)
new mode 100644 (file)
index 9b6d006..5c6333e
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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, Keith Burns
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import java.math.BigInteger;
old mode 100755 (executable)
new mode 100644 (file)
index 5eb94fe..e869363
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import io.netty.channel.Channel;
old mode 100755 (executable)
new mode 100644 (file)
index f3dfc59..3336a3e
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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, Evan Zeller
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import io.netty.bootstrap.Bootstrap;
old mode 100755 (executable)
new mode 100644 (file)
index 34e21c5..e33ae72
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Evan Zeller
+ */
 package org.opendaylight.ovsdb.plugin;
 
 public enum Encapsulation {
old mode 100755 (executable)
new mode 100644 (file)
index 68b49fa..ee3567e
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import java.util.List;
index 3d3e2bce01fd8488ec4422147eade9daf2546db1..3caa2a19b57a0e25dfc997d00c9ab8de4de90232 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 import java.net.InetAddress;
old mode 100755 (executable)
new mode 100644 (file)
index dfc0a66..49e7460
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;\r
 \r
 import java.util.ArrayList;\r
old mode 100755 (executable)
new mode 100644 (file)
index 3d1e248..71bf18b
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import java.util.Collection;
index cff86ab176b33c1c6c408b4c6f56bc6500d822e3..482e36162f1e85f848eb3677e557395e54b5d74c 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import java.util.Map;
index 7e6cb31e08ead1a9210f1a28e5bd02030ec0628a..8cd82f1e1713d964ecd87810c8d77c3fac9402b1 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
old mode 100755 (executable)
new mode 100644 (file)
index 793a102..8298866
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;\r
 \r
 import java.util.ArrayList;\r
old mode 100755 (executable)
new mode 100644 (file)
index 5081f8a..af9a280
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import org.opendaylight.controller.sal.core.NodeConnector;
index 3191e78951f91a4c3f511c712bd62345167bc79e..aeb173de22fd98e4fecaeab1313a5d772a7a679a 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import java.util.Map;
old mode 100755 (executable)
new mode 100644 (file)
index b34dc17..7d0ecf9
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import org.opendaylight.controller.sal.core.ConstructionException;
index 3ff32ef8a55176858101942ebe5516a89a721254..281bed7b95f80480f4568cf2eb0a82996bc03b2a 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import java.util.List;
index bbb82508e2055f2ad69683d04d14420ea0306160..3dec8a53116bb9c6a6dc9198d368cbac055a412c 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;
 
 import org.opendaylight.controller.sal.core.Node;
old mode 100755 (executable)
new mode 100644 (file)
index 84d5be2..9a123fd
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Evan Zeller
+ */
 package org.opendaylight.ovsdb.plugin;\r
 \r
 import java.util.Random;\r
old mode 100755 (executable)
new mode 100644 (file)
index 6df5bdc..8836344
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Evan Zeller
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import java.net.InetAddress;
index def81cf20f2f041c7fff2bfc8f856f9d22831d57..9929de6a0c99f22f5b4acf13bb940b8a660898f2 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import org.opendaylight.controller.sal.utils.Status;
old mode 100755 (executable)
new mode 100644 (file)
index a2bef9b..38549b5
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 Red Hat, Inc.
+ *
+ * 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.plugin;\r
 \r
 \r
index c6ecb72f8a71a89fabbbaa823f2ce38cb1e1d8d2..9a3a8defd6aeb8334bfe5c644873c69cd99fba2a 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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 : Aswin Raveendran
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import io.netty.bootstrap.ServerBootstrap;
index 0039859622880b2a889cb19c7c469e8ba69c5546..bcd8b90c7991f9a00496304d1b41cea44d01239a 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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 : Aswin Raveendran
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import io.netty.handler.logging.LogLevel;
index 44d48fd0f5c6deb84d5aee44aafa0822d766bc1e..36e028d53799f1fbedf74acb074be0067e20764f 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * Copyright (C) 2013 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 : Aswin Raveendran
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import com.google.common.reflect.Invokable;
index 32cac3bd1281c19bf92f97cdfd47989121a1a1b6..a2384f615917fd9fe44109e8ccaed85aa36f162b 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Aswin Raveendran, Madhu Venugopal
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import com.fasterxml.jackson.annotation.JsonAutoDetect;
index 65bde156f4ae75629649e9b5cdb7855b96d1a715..a8442fdf9299aab475230c4fc317d97222ee9a25 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Madhu Venugopal, Aswin Raveendran
+ */
 package org.opendaylight.ovsdb.lib.message;
 
 import java.io.IOException;
index a307c2ce0bcd3dd4078e6dc1e39f590445fc04a3..ba4fd6ce937753f511ad9a964364a6c530d30dfa 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import java.util.List;
old mode 100755 (executable)
new mode 100644 (file)
index 5d8d808..f8edd48
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;\r
 \r
 import org.junit.Test;\r
old mode 100755 (executable)
new mode 100644 (file)
index d36f0d5..c632c12
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import java.io.IOException;
old mode 100755 (executable)
new mode 100644 (file)
index 3ff2fb4..125a639
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;
 
 
old mode 100755 (executable)
new mode 100644 (file)
index c0bf021..a5948e9
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import java.util.HashMap;
index cbc294f3e4fb46d29994292cf8751136f6ea2343..1c469d931533173971e991af14df8c801d25623a 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import java.io.IOException;
index fe10f50cf9b8bb4aa675bb1b036b925f298f41fc..59490368670ff47adc4eb7ba1ff70c2bac877cef 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import java.util.HashMap;
index d31748c91c0969eaef1c5d6453cee1fc697c87b1..e3b3a646378d8c27483c30c91c0f27a2084542a9 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import org.junit.Test;
old mode 100755 (executable)
new mode 100644 (file)
index a7844bc..f0db13d
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;\r
 \r
 import org.junit.Test;\r
index 0faf16ea2ebe837b71da9ecc26242be07d9e2d54..b0e3191fda505322017505e50f6627438b61e2aa 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * [[ Authors will Fill in the Copyright header ]]
+ *
+ * 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 : Brent Salisbury, Hugo Trippaers
+ */
 package org.opendaylight.ovsdb.plugin;
 
 import java.util.HashMap;