Define the <op>_ipsec_site_connection() methods to ensure any new
service drivers will implement them.
Closes-Bug:
1326793
Change-Id: Idfe67632893592859990db486393a7108362447e
def delete_vpnservice(self, context, vpnservice):
pass
+ @abc.abstractmethod
+ def create_ipsec_site_connection(self, context, ipsec_site_connection):
+ pass
+
+ @abc.abstractmethod
+ def update_ipsec_site_connection(self, context, old_ipsec_site_connection,
+ ipsec_site_connection):
+ pass
+
+ @abc.abstractmethod
+ def delete_ipsec_site_connection(self, context, ipsec_site_connection):
+ pass
+
class BaseIPsecVpnAgentApi(n_rpc.RpcProxy):
"""Base class for IPSec API to agent."""