note description: "StatusRequest message. GENERATED DO NOT MODIFY" author: "Origo Team " date: "$Date$" revision: "$Revision$" class A_SYSTEM_STATUS_REQUEST_MESSAGE inherit A_MESSAGE rename make as make_aranea_message end A_SYSTEM_CONSTANTS undefine is_equal, out end create make, make_from_tokenizer create {A_MESSAGE_FACTORY} make_from_ems_message feature {NONE} -- Initialization make () -- Create do make_aranea_message ensure end feature -- Message handling handle (a_handler: A_SYSTEM_STATUS_REQUEST_MESSAGE_HANDLER) -- do a_handler.handle_status_request (Current) end feature -- Access namespace: STRING -- Namespace of the message type. once Result := system_namespace end type: STRING -- Type of the message. once Result := system_status_request_type end feature {NONE} -- Implementation serialization_list: attached STRING -- Lists the fields to serialize, and under which name do create Result.make_empty end parse_tag (a_tag: STRING; a_tokenizer: A_JSON_TOKENIZER) do end end