Merge dev/fluorine work across to master
[unimgr.git] / netvirt / src / main / java / org / opendaylight / unimgr / mef / netvirt / IUniPortManager.java
diff --git a/netvirt/src/main/java/org/opendaylight/unimgr/mef/netvirt/IUniPortManager.java b/netvirt/src/main/java/org/opendaylight/unimgr/mef/netvirt/IUniPortManager.java
deleted file mode 100644 (file)
index 6ce6406..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (c) 2016 Hewlett Packard Enterprise, Co. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.unimgr.mef.netvirt;
-
-import java.util.List;
-
-public interface IUniPortManager {
-
-    void updateOperUni(String uniId);
-
-    void removeUniPorts(String uniId);
-
-    void addCeVlan(String uniId, Long vlanId);
-
-    void removeCeVlan(String uniId, Long vlanId);
-
-    List<String> getUniVlanInterfaces(String uniId);
-
-    String getUniVlanInterface(String uniId, Long vlanId);
-
-    String getUniVlanInterfaceName(String uniId, Long vlanId);
-}