DO-NOT-MERGE: SEBA-695

Change-Id: I08fa28ff08f3462125769d7a4d3481c0e4ae98e5
diff --git a/xos/synchronizer/config.yaml b/xos/synchronizer/config.yaml
index c7c4ca0..ad53b84 100644
--- a/xos/synchronizer/config.yaml
+++ b/xos/synchronizer/config.yaml
@@ -23,6 +23,7 @@
 sys_dir: "/opt/xos/synchronizers/rcord/sys"
 models_dir: "/opt/xos/synchronizers/rcord/models"
 model_policies_dir: "/opt/xos/synchronizers/rcord/model_policies"
+steps_dir: "/opt/xos/synchronizers/rcord/steps"
 logging:
   version: 1
   handlers:
diff --git a/xos/synchronizer/steps/sync_rcordsubscriber.py b/xos/synchronizer/steps/sync_rcordsubscriber.py
new file mode 100644
index 0000000..a25ca43
--- /dev/null
+++ b/xos/synchronizer/steps/sync_rcordsubscriber.py
@@ -0,0 +1,36 @@
+# Copyright 2017-present Open Networking Foundation
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import os, sys
+sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
+
+from multistructlog import create_logger
+from xossynchronizer.modelaccessor import RCORDSubscriber, model_accessor
+from xossynchronizer.steps.syncstep import SyncStep
+from xosconfig import Config
+
+log = create_logger(Config().get("logging"))
+
+class SyncRCORDSubscriber(SyncStep):
+    provides = [RCORDSubscriber]
+
+    observes = RCORDSubscriber
+
+    #TODO: (Blocked by SEBA-694) : Add API calls that will be implemented by SEBA-694 to flush the Sadis cache when a subscriber changes or is removed.
+
+    def sync_record(self, model):
+        log.info('Synching RCORDSubscriber', object=str(model), **model.tologdict())
+
+    def delete_record(self, model):
+        log.info('Deleting RCORDSubscriber', object=str(model), **model.tologdict())