mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 03:02:17 +03:00
creating response message fixed
This commit is contained in:
parent
aabb6c51c6
commit
3e1342b1d9
1 changed files with 5 additions and 2 deletions
|
@ -18,6 +18,7 @@ class Messaging(object):
|
|||
self.db_service = scope.getDbService()
|
||||
self.event_manger = scope.getEventManager()
|
||||
|
||||
"""
|
||||
def response_msg(self, response):
|
||||
print("response message")
|
||||
data = {}
|
||||
|
@ -32,6 +33,7 @@ class Messaging(object):
|
|||
json_data = json.dumps(data)
|
||||
self.logger.debug('[Messaging] Response message was created')
|
||||
return str(json_data)
|
||||
"""
|
||||
|
||||
def task_status_msg(self, response):
|
||||
data = {}
|
||||
|
@ -50,8 +52,8 @@ class Messaging(object):
|
|||
def policy_status_msg(self, response):
|
||||
data = {}
|
||||
data['type'] = response.get_type()
|
||||
data['policyVersion'] = response.get_id()
|
||||
data['commandExecutionId'] = response.get_id()
|
||||
data['policyVersion'] = response.get_policy_version()
|
||||
data['commandExecutionId'] = response.get_execution_id()
|
||||
data['responseCode'] = response.get_code()
|
||||
data['responseMessage'] = response.get_message()
|
||||
data['responseData'] = response.get_data()
|
||||
|
@ -63,6 +65,7 @@ class Messaging(object):
|
|||
return str(json_data)
|
||||
|
||||
|
||||
|
||||
def login_msg(self, username):
|
||||
data = {}
|
||||
data['type'] = 'LOGIN'
|
||||
|
|
Loading…
Reference in a new issue