blob: 2e962bb16b9f24be09d6c089db89e9ed3c693162 [file] [log] [blame]
Matteo Scandolo3b672572018-06-25 14:28:36 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15from xos.exceptions import XOSValidationError
16
17from models_decl import ONOSApp_decl
18from models_decl import ONOSService_decl
19
Scott Baker7848fa52019-04-01 17:54:36 -070020
Matteo Scandolo3b672572018-06-25 14:28:36 -070021class ONOSApp(ONOSApp_decl):
22 class Meta:
23 proxy = True
24
25 def save(self, *args, **kwargs):
26
27 if self.url and not self.version:
Scott Baker7848fa52019-04-01 17:54:36 -070028 raise XOSValidationError(
29 "If you specify a url, you also need to specify a version. ONOSApp: %s" %
30 self.name)
Matteo Scandolo3b672572018-06-25 14:28:36 -070031
32 super(ONOSApp, self).save(*args, **kwargs)
33
34
35class ONOSService(ONOSService_decl):
Scott Baker7848fa52019-04-01 17:54:36 -070036 class Meta:
37 proxy = True