CORD-1172: Brought metronet-local service over to xproto

Change-Id: Idef179d1a92c17c759452ac11cdcefa2bfa2de4c
diff --git a/xos/attic/vnodlocalsystem_model.py b/xos/attic/vnodlocalsystem_model.py
new file mode 100644
index 0000000..6077b48
--- /dev/null
+++ b/xos/attic/vnodlocalsystem_model.py
@@ -0,0 +1,15 @@
+def __init__(self, *args, **kwargs):
+    super(VnodLocalSystem, self).__init__(*args, **kwargs)
+
+
+def getAdminstrativeState(self):
+    return self.administrativeState
+
+
+def setAdminstrativeState(self, value):
+    self.administrativeState = value
+
+
+def getRestUrl(self):
+    return self.restUrl
+