epc-as-a-service functionality added
Change-Id: I20b5dd073ef75c83a07c41c987b7ec05e4aa2f06
diff --git a/xos/models.py b/xos/models.py
index dcd19c5..16bc8c2 100644
--- a/xos/models.py
+++ b/xos/models.py
@@ -15,15 +15,13 @@
import traceback
from xos.exceptions import *
from xos.config import Config
-from django.contrib.contenttypes.models import ContentType
-from django.contrib.contenttypes.fields import GenericForeignKey
class VSGWCService(VSGWCService_decl):
class Meta:
proxy = True
def create_tenant(self, **kwargs):
- t = VSGWCTenant(kind="vEPC", provider_service=self, connect_method="na", tenant_message="vsgwc tenant in service chain", **kwargs)
+ t = VSGWCTenant(kind="vEPC", provider_service=self, connect_method="na", **kwargs)
t.save()
return t