jiangrui
Committed by Gerrit Code Review

ONOS-3482 Deprecated two method about create tunnel.

Change-Id: I6cef8fda7a679653040d8d191d96826a7de5bb3e
......@@ -29,6 +29,7 @@ public interface TunnelConfig extends HandlerBehaviour {
*
* @param tunnel tunnel descriptor
*/
@Deprecated
void createTunnel(TunnelDescription tunnel);
/**
......
......@@ -49,6 +49,7 @@ public interface OvsdbClientService extends OvsdbRPC {
* @param srcIp source IP address
* @param dstIp destination IP address
*/
@Deprecated
void createTunnel(IpAddress srcIp, IpAddress dstIp);
/**
......