mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-11 00:02:16 +03:00
18 lines
540 B
Python
18 lines
540 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
||
|
from base.model.enum.message_type import MessageType
|
||
|
|
||
|
|
||
|
class MessageFactory(object):
|
||
|
def createMessage(self, type, message):
|
||
|
|
||
|
if type == MessageType.TASK_RECEIVED:
|
||
|
return "Message receivden response"
|
||
|
elif type == MessageType.TASK_PROCESSING:
|
||
|
return "Message processing response"
|
||
|
else:
|
||
|
return None
|
||
|
|
||
|
createMessage = staticmethod(createMessage)
|