Removing unused classes from Library 69/8869/1
authorMadhu Venugopal <mavenugo@gmail.com>
Wed, 9 Jul 2014 19:02:31 +0000 (12:02 -0700)
committerMadhu Venugopal <mavenugo@gmail.com>
Wed, 9 Jul 2014 19:02:31 +0000 (12:02 -0700)
Change-Id: I9397271ee485b0f04f64da1fb8582a9910160ba3
Signed-off-by: Madhu Venugopal <mavenugo@gmail.com>
library/src/main/java/org/opendaylight/ovsdb/lib/operations/AssertOperation.java [deleted file]
library/src/main/java/org/opendaylight/ovsdb/lib/operations/CommentOperation.java [deleted file]
library/src/main/java/org/opendaylight/ovsdb/lib/operations/DeleteOperation.java [deleted file]
library/src/main/java/org/opendaylight/ovsdb/lib/operations/MutateOperation.java [deleted file]
library/src/main/java/org/opendaylight/ovsdb/lib/operations/SelectOperation.java [deleted file]
library/src/main/java/org/opendaylight/ovsdb/lib/operations/WaitOperation.java [deleted file]

diff --git a/library/src/main/java/org/opendaylight/ovsdb/lib/operations/AssertOperation.java b/library/src/main/java/org/opendaylight/ovsdb/lib/operations/AssertOperation.java
deleted file mode 100644 (file)
index c83ab84..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * 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.operations;
-
-public class AssertOperation extends Operation {
-
-}
diff --git a/library/src/main/java/org/opendaylight/ovsdb/lib/operations/CommentOperation.java b/library/src/main/java/org/opendaylight/ovsdb/lib/operations/CommentOperation.java
deleted file mode 100644 (file)
index 90035d4..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * 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.operations;
-
-public class CommentOperation extends Operation {
-
-}
diff --git a/library/src/main/java/org/opendaylight/ovsdb/lib/operations/DeleteOperation.java b/library/src/main/java/org/opendaylight/ovsdb/lib/operations/DeleteOperation.java
deleted file mode 100644 (file)
index 6cafeb2..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * 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.operations;
-
-import java.util.List;
-
-import org.opendaylight.ovsdb.lib.notation.Condition;
-//TODO Madhu : This is not complete. Getting it in to enable other committers to make progress
-public class DeleteOperation extends Operation {
-    String table;
-    List<Condition> where;
-
-    public DeleteOperation(String table, List<Condition> where) {
-        super();
-        super.setOp("delete");
-        this.table = table;
-        this.where = where;
-    }
-    public String getTable() {
-        return table;
-    }
-    public void setTable(String table) {
-        this.table = table;
-    }
-    public List<Condition> getWhere() {
-        return where;
-    }
-    public void setWhere(List<Condition> where) {
-        this.where = where;
-    }
-    @Override
-    public String toString() {
-        return "DeleteOperation [table=" + table + ", where=" + where
-                + ", toString()=" + super.toString() + "]";
-    }
-}
diff --git a/library/src/main/java/org/opendaylight/ovsdb/lib/operations/MutateOperation.java b/library/src/main/java/org/opendaylight/ovsdb/lib/operations/MutateOperation.java
deleted file mode 100644 (file)
index 24d99d9..0000000
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * 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.operations;
-
-import java.util.List;
-
-import org.opendaylight.ovsdb.lib.notation.Condition;
-import org.opendaylight.ovsdb.lib.notation.Mutation;
-
-public class MutateOperation extends Operation {
-    String table;
-    List<Condition> where;
-    List<Mutation> mutations;
-
-    public MutateOperation(String table, List<Condition> where,
-                           List<Mutation> mutations) {
-        super();
-        super.setOp("mutate");
-        this.table = table;
-        this.where = where;
-        this.mutations = mutations;
-    }
-
-    public String getTable() {
-        return table;
-    }
-
-    public void setTable(String table) {
-        this.table = table;
-    }
-
-    public List<Condition> getWhere() {
-        return where;
-    }
-
-    public void setWhere(List<Condition> where) {
-        this.where = where;
-    }
-
-    public List<Mutation> getMutations() {
-        return mutations;
-    }
-
-    public void setMutations(List<Mutation> mutations) {
-        this.mutations = mutations;
-    }
-
-    @Override
-    public String toString() {
-        return "MutateOperation [table=" + table + ", where=" + where
-                + ", mutations=" + mutations + ", toString()="
-                + super.toString() + "]";
-    }
-}
diff --git a/library/src/main/java/org/opendaylight/ovsdb/lib/operations/SelectOperation.java b/library/src/main/java/org/opendaylight/ovsdb/lib/operations/SelectOperation.java
deleted file mode 100644 (file)
index 5857e33..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * 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.operations;
-
-import java.util.List;
-
-import org.opendaylight.ovsdb.lib.notation.Condition;
-
-public class SelectOperation extends Operation {
-    String table;
-    List<Condition> where;
-    List<String> columns;
-
-    public SelectOperation(String table, List<Condition> where, List<String> columns) {
-        super();
-        super.setOp("select");
-        this.table = table;
-        this.where = where;
-        this.columns = columns;
-    }
-    public String getTable() {
-        return table;
-    }
-    public void setTable(String table) {
-        this.table = table;
-    }
-    public List<Condition> getWhere() {
-        return where;
-    }
-    public void setWhere(List<Condition> where) {
-        this.where = where;
-    }
-    public List<String> getColumns() {
-        return columns;
-    }
-    public void setColumns(List<String> columns) {
-        this.columns = columns;
-    }
-    @Override
-    public String toString() {
-        return "SelectOperation [table=" + table + ", where=" + where
-                + ", columns=" + columns + "]";
-    }
-}
diff --git a/library/src/main/java/org/opendaylight/ovsdb/lib/operations/WaitOperation.java b/library/src/main/java/org/opendaylight/ovsdb/lib/operations/WaitOperation.java
deleted file mode 100644 (file)
index c152c82..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/*
- * 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.operations;
-
-public class WaitOperation extends Operation {
-
-}