refactoring to support delete\update of servics.
[unimgr.git] / netvirt / src / main / java / org / opendaylight / unimgr / mef / netvirt / IUniPortManager.java
1 /*
2  * Copyright (c) 2016 Hewlett Packard Enterprise, Co. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.unimgr.mef.netvirt;
10
11 import java.util.List;
12
13 public interface IUniPortManager {
14
15     void updateOperUni(String uniId);
16
17     void removeUniPorts(String uniId);
18
19     void addCeVlan(String uniId, Long vlanId);
20
21     void removeCeVlan(String uniId, Long vlanId);
22
23     List<String> getUniVlanInterfaces(String uniId);
24
25     String getUniVlanInterface(String uniId, Long vlanId);
26
27 }