Update the Netconf custom rpc as follows:
1) Create a message/field YANG reference.  This is used to keep the
XML tags in the same order as the fields appear in the YANG schema.
This applies only for custom RPCs (one of Netconf twist)
2) Annotate the proto RPCs with custom annotations which are used
when constructing an XML response

Change-Id: I07a8a3f2a44b7081c78e00dab05734a7c6b0a358
diff --git a/netconf/constants.py b/netconf/constants.py
index 976ddff..8e6bf92 100644
--- a/netconf/constants.py
+++ b/netconf/constants.py
@@ -28,6 +28,9 @@
     CERTS_DIRECTORY = 'security/certificates'
     CLIENT_CRED_DIRECTORY = 'security/client_credentials'
 
+    # YANG message definition file - generated file
+    YANG_MESSAGE_DEFINITIONS_FILE='yang_message_defs.py'
+
     # Datastores
     RUNNING = "running"
     CANDIDATE = "candidate"