itm and mdsal porting
[vpnservice.git] / itm / itm-api / src / main / java / org / opendaylight / vpnservice / itm / api / IITMProvider.java
1 /*
2  * Copyright (c) 2015 Ericsson India Global Services Pvt Ltd. 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 package org.opendaylight.vpnservice.itm.api;
9 import java.math.BigInteger;
10 import java.util.List;
11
12 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
13 import org.opendaylight.vpnservice.interfacemgr.exceptions.InterfaceNotFoundException;
14 import org.opendaylight.vpnservice.mdsalutil.ActionInfo;
15 import org.opendaylight.vpnservice.mdsalutil.MatchInfo;
16 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.IpAddress;
17 //import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.itm.config.rev151102.vtep.config.schemas.VtepConfigSchema;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.vpnservice.itm.config.rev151102.vtep.config.schemas.VtepConfigSchema; 
19 //import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.itm.op.rev150701.TunnelsState;
20
21 public interface IITMProvider {
22         // APIs used by i
23     public void createLocalCache(BigInteger dpnId, String portName, Integer vlanId, String ipAddress, String subnetMask, String gatewayIp, String transportZone);
24
25     public void commitTeps();
26
27     public DataBroker getDataBroker();
28
29     public void showTeps();
30
31     public void deleteVtep(BigInteger dpnId, String portName, Integer vlanId, String ipAddress, String subnetMask,
32                     String gatewayIp, String transportZone);
33    // public void showState(TunnelsState tunnelsState);
34     public void configureTunnelType(String transportZone, String tunnelType);
35
36     
37     /**
38      * Adds the vtep config schema.
39      *
40      * @param vtepConfigSchema
41      *            the vtep config schema
42      */
43     public void addVtepConfigSchema(VtepConfigSchema vtepConfigSchema);
44
45     /**
46      * Gets the vtep config schema.
47      *
48      * @param schemaName
49      *            the schema name
50      * @return the vtep config schema
51      */
52     public VtepConfigSchema getVtepConfigSchema(String schemaName);
53
54     /**
55      * Gets the all vtep config schemas.
56      *
57      * @return the all vtep config schemas
58      */
59     public List<VtepConfigSchema> getAllVtepConfigSchemas();
60
61     /**
62      * Update VTEP schema.
63      *
64      * @param schemaName
65      *            the schema name
66      * @param lstDpnsForAdd
67      *            the lst dpns for add
68      * @param lstDpnsForDelete
69      *            the lst dpns for delete
70      */
71     public void updateVtepSchema(String schemaName, List<BigInteger> lstDpnsForAdd, List<BigInteger> lstDpnsForDelete);
72
73     /**
74      * Delete all vtep schemas.
75      */
76     public void deleteAllVtepSchemas();
77
78     public void configureTunnelMonitorEnabled(boolean monitorEnabled);
79
80     public void configureTunnelMonitorInterval(int interval);
81 }