blob: 9824a3688b67bf6d35f5982114149316c26e3f46 [file] [log] [blame]
Andy Bavier03df22b2017-08-30 14:46:02 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
17def __init__(self, *args, **kwargs):
18 volt_services = VOLTService.objects.all()
19 if volt_services:
20 self._meta.get_field("owner").default = volt_services[0].id
21 super(VOLTTenant, self).__init__(*args, **kwargs)
22 self.cached_vcpe = None
23
Sapan Bhatia9545fd82017-09-20 06:42:38 -070024def __xos_save_base(self, *args, **kwargs):
Andy Bavier03df22b2017-08-30 14:46:02 -070025 if not self.creator:
26 if not getattr(self, "caller", None):
27 # caller must be set when creating a vCPE since it creates a slice
28 raise XOSProgrammingError("VOLTTenant's self.caller was not set")
29 self.creator = self.caller
30 if not self.creator:
31 raise XOSProgrammingError("VOLTTenant's self.creator was not set")
32
Sapan Bhatia9545fd82017-09-20 06:42:38 -070033 return False