blob: 829abaae88d57179f564debc65afd5dd1de1aa4e [file] [log] [blame]
Scott Baker62c7eaf2018-05-22 15:59:26 -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
Scott Bakerc808c672019-02-04 11:38:20 -080017from xossynchronizer.modelaccessor import OpenStackService
Scott Baker62c7eaf2018-05-22 15:59:26 -070018from newopenstacksyncstep import NewOpenStackSyncStep
19
20class SyncOpenStackService(NewOpenStackSyncStep):
21 provides=[OpenStackService]
22 requested_interval=0
23 observes=OpenStackService
24
25 def sync_record(self, service):
26 # nothing to do
27 pass
28
29 def delete_record(self, service):
30 # nothing to do
31 pass
32