Andy Bavier | 03df22b | 2017-08-30 14:46:02 -0700 | [diff] [blame] | 1 | |
| 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 | |
| 17 | #from core.models import User, TenantRootPrivilege, TenantRootRole |
| 18 | from services.rcord.models import CordSubscriberRoot |
| 19 | from xosresource import XOSResource |
| 20 | |
| 21 | class XOSCORDSubscriber(XOSResource): |
| 22 | provides = "tosca.nodes.CORDSubscriber" |
| 23 | xos_model = CordSubscriberRoot |
| 24 | copyin_props = ["service_specific_id", "firewall_enable", "url_filter_enable", "cdn_enable", "url_filter_level"] |
| 25 | |
| 26 | # def postprocess(self, obj): |
| 27 | # rolemap = ( ("tosca.relationships.AdminPrivilege", "admin"), ("tosca.relationships.AccessPrivilege", "access"), ) |
| 28 | # self.postprocess_privileges(TenantRootRole, TenantRootPrivilege, rolemap, obj, "tenant_root") |
| 29 | |
| 30 | def can_delete(self, obj): |
| 31 | return super(XOSCORDSubscriber, self).can_delete(obj) |
| 32 | |