blob: 4e7c71a2ec9755af3817ff3f5b232c401263f5b3 [file] [log] [blame]
Scott Bakera0f6aa82018-01-19 09:07:08 -08001
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
16from xos.exceptions import *
17from models_decl import *
18
19class ONOSApp(ONOSApp_decl):
20 class Meta:
21 proxy = True
22
23 def __init__(self, *args, **kwargs):
24 onos_services = ONOSService.objects.all()
25 if onos_services:
26 self._meta.get_field("owner").default = onos_services[0].id
27 super(ONOSApp, self).__init__(*args, **kwargs)
28
29class ONOSService(ONOSService_decl):
30 class Meta:
31 proxy = True