Add license info to new files 29/5829/1
authorDave Tucker <dave.j.tucker@hp.com>
Tue, 1 Apr 2014 14:02:53 +0000 (15:02 +0100)
committerDave Tucker <dave.j.tucker@hp.com>
Tue, 1 Apr 2014 14:05:04 +0000 (15:05 +0100)
Change-Id: I175d777952cac6109dfd838d3938446f241ea8e6
Signed-off-by: Dave Tucker <dave.j.tucker@hp.com>
16 files changed:
ovsdb/src/main/java/org/opendaylight/ovsdb/Insert.java
ovsdb/src/main/java/org/opendaylight/ovsdb/OpenVswitch.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/database/Column.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/database/Table.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/jsonrpc/JsonUtils.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/message/operations/ConditionalOperation.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/meta/BaseType.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/meta/ColumnSchema.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/meta/ColumnType.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/meta/DatabaseSchema.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/meta/TableSchema.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/meta/temp/Reference.java
ovsdb/src/main/java/org/opendaylight/ovsdb/lib/meta/temp/SchemaObjs.java
ovsdb/src/test/java/org/opendaylight/ovsdb/OpenVswitchTestIT.java
ovsdb/src/test/java/org/opendaylight/ovsdb/OpenVswitchTestITTyped.java
ovsdb/src/test/java/org/opendaylight/ovsdb/lib/meta/OvsDBSchemaTest.java

index e9770d8d6527a20ce3b461e120820337efd0ae08..1ed6dd6993abe15d3eadc6841afc127857eac439 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb;
 
 import com.fasterxml.jackson.annotation.JsonProperty;
@@ -8,9 +17,7 @@ import org.opendaylight.ovsdb.lib.meta.TableSchema;
 
 import java.util.Map;
 
-/**
- * @author Ashwin Raveendran
- */
+
 public class Insert<E extends TableSchema<E>> extends Operation<E> {
 
     public static final String INSERT = "insert";
index b38efc4cf62c048032dae2ce54c56876be985447..426cb8fbf2475771ccbf5045dd9013a0dc7e5ea5 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb;
 
 import com.fasterxml.jackson.annotation.JsonIgnore;
@@ -22,9 +31,7 @@ import java.util.Map;
 import java.util.Queue;
 import java.util.concurrent.ExecutorService;
 
-/**
- * @author araveendrann
- */
+
 public class OpenVswitch {
 
     ExecutorService executorService;
index cd910d0c7d620e2ef4e0cdaaeda7f6eb76a04ec4..6721c93ac97b4e58d11e0a7598c529b224bd2710 100644 (file)
@@ -1,8 +1,15 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.database;
 
-/**
- * @author araveendrann
- */
+
 public class Column<E extends Table> {
     ColumnSchema schema;
 }
index b0855680e30e0fc90ad78be291d17dd5f6c579af..33e04781b343b88ca8c7f99354f8eb101209f0dc 100644 (file)
@@ -1,8 +1,15 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.database;
 
-/**
- * @author araveendrann
- */
+
 public class Table<E extends Table> {
     TableSchema schema;
 
index 9fa0f38b8217a63041ce36723cbf724bf6736344..ca730ae557d449cc0884998a798afad6154c23bd 100644 (file)
@@ -1,12 +1,19 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.jsonrpc;
 
 import com.fasterxml.jackson.core.JsonProcessingException;
 import com.fasterxml.jackson.databind.ObjectMapper;
 import com.fasterxml.jackson.databind.ObjectWriter;
 
-/**
- * @author araveendrann
- */
+
 public class JsonUtils {
 
     static ObjectMapper mapper = new ObjectMapper();
index feabe2830e9b0e71d0faf4a9203ec666332eb7c1..fae76a77a451999424759ab2551f9d70933e205b 100644 (file)
@@ -1,10 +1,18 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.message.operations;
 
 import org.opendaylight.ovsdb.lib.notation.Condition;
 
 /**
  * Represents an Operation type that accepts acondition, for e.g Update, Select etc
- * @author araveendrann
  */
 public interface ConditionalOperation {
 
index b4e036f6525fd6219012d41baac6415dfd0d1ac9..88a9a75d07f7be5bbc2340823e14e8c59482963e 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.meta;
 
 import com.fasterxml.jackson.databind.JsonNode;
@@ -5,9 +14,6 @@ import com.google.common.collect.Sets;
 
 import java.util.Set;
 
-/**
- * @author araveendrann
- */
 public abstract class BaseType<E extends BaseType<E>> {
 
     private static BaseType[] types = new BaseType[]{
index 683dbea933810c9f3b6c7b5e2dc34d3a97d41406..baeb698d0f9d94b8c8cd244691dfe29ca033eb3e 100644 (file)
@@ -1,12 +1,18 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.meta;
 
 import com.fasterxml.jackson.databind.JsonNode;
 import org.opendaylight.ovsdb.lib.notation.Condition;
 import org.opendaylight.ovsdb.lib.notation.Function;
 
-/**
- * @author ashw7n
- */
 
 public class ColumnSchema<E extends TableSchema<E>, D> {
     String name;
index aa4eeeb908a7b37dad47f67641a8f081db243480..4fde88c5602c38ad6bdfc80cd8295cdbd9ce8cdb 100644 (file)
@@ -1,11 +1,18 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.meta;
 
 import com.fasterxml.jackson.databind.JsonNode;
 import org.opendaylight.ovsdb.lib.jsonrpc.JsonUtils;
 
-/**
- * @author araveendrann
- */
+
 public abstract class ColumnType {
     BaseType baseType;
     int min = 0;
index e082b0907cc5a74fabc023683d0b255c8c6fe4b5..f6a4f67254e4cc35a85e9a71e1586a2d5f9f97b5 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.meta;
 
 import com.fasterxml.jackson.databind.JsonNode;
@@ -9,9 +18,7 @@ import java.util.HashMap;
 import java.util.Iterator;
 import java.util.Map;
 
-/**
- * @author araveendrann
- */
+
 public class DatabaseSchema {
     public static Logger logger = LoggerFactory.getLogger(DatabaseSchema.class);
 
index 2547ac0b765c70a0390f0add42486ba16a056552..4987c05b809161c507ae4d9959c7ea46f191d8a8 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.meta;
 
 import com.fasterxml.jackson.databind.JsonNode;
@@ -10,9 +19,7 @@ import java.util.HashMap;
 import java.util.Iterator;
 import java.util.Map;
 
-/**
- * @author araveendrann
- */
+
 public class TableSchema<E extends TableSchema<E>> {
     protected static final Logger logger = LoggerFactory.getLogger(TableSchema.class);
     private String name;
index 85a175d70e0869b2de1121964ac5c73b015a47e5..f27a75816894fbda493e9296c4cad95862ebead2 100644 (file)
@@ -1,8 +1,15 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.meta.temp;
 
-/**
- * @author araveendrann
- */
+
 public class Reference {
 
 }
index 29b3f315e0a8f5afcda127ebd4d8aa148ee86488..8761eeed2528be9c7258db7569f420eae2ad19ed 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.meta.temp;
 
 import org.opendaylight.ovsdb.OpenVswitch;
@@ -5,9 +14,7 @@ import org.opendaylight.ovsdb.lib.meta.DatabaseSchema;
 import org.opendaylight.ovsdb.lib.meta.ColumnSchema;
 import org.opendaylight.ovsdb.lib.meta.TableSchema;
 
-/**
- * @author araveendrann
- */
+
 public class SchemaObjs {
 
     public static class Bridge extends TableSchema<Bridge> {
index 711814be5397c2cd0116743d88b9acb1b0c936f9..8118ca59ebac5686715b3d3e9ed88af3cd801bdf 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb;
 
 import com.google.common.util.concurrent.ListenableFuture;
@@ -19,9 +28,7 @@ import java.util.concurrent.Executors;
 
 import static org.opendaylight.ovsdb.OpenVswitch.Operations.op;
 
-/**
- * @author Ashwin Raveendran
- */
+
 public class OpenVswitchTestIT extends OvsdbTestBase {
     Logger logger = LoggerFactory.getLogger(OpenVswitchTestIT.class);
 
index 91d3c5ddccc70333f6c671e5cc727a013aadf336..34570713b8d8032e314e87518af7a15a60e27f04 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb;
 
 import com.google.common.util.concurrent.ListenableFuture;
@@ -21,9 +30,6 @@ import java.util.concurrent.Executors;
 
 import static org.opendaylight.ovsdb.OpenVswitch.Operations.op;
 
-/**
- * @author Ashwin Raveendran
- */
 public class OpenVswitchTestITTyped extends OvsdbTestBase {
 
     Logger logger = LoggerFactory.getLogger(OpenVswitchTestITTyped.class);
index 91be86ac1fec7db2cd7f27cde9661523912b1f41..4d8ef6622c24d3b301f55b3d424ea0047669b835 100644 (file)
@@ -1,3 +1,12 @@
+/*
+ * 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
+ */
 package org.opendaylight.ovsdb.lib.meta;
 
 import com.fasterxml.jackson.databind.JsonNode;
@@ -7,9 +16,7 @@ import static org.junit.Assert.assertNotNull;
 import java.io.IOException;
 import java.io.InputStream;
 
-/**
- * @author araveendrann
- */
+
 public class OvsDBSchemaTest {
 
     @Test