indexing description: "Community list message." author: "Marco Zietzling " date: "$Date$" revision: "$Revision$" class O_COMMUNITY_LIST_MESSAGE inherit O_SESSION_MESSAGE rename make as make_session redefine make_from_generic, arguments end O_COMMUNITY_CONSTANTS undefine out end create make create {O_MESSAGE_FACTORY} make_from_generic feature {NONE} -- Initialization make (a_session: like session) is -- Create. require a_session_ok: a_session /= Void and then not a_session.is_empty do make_session (a_session) end make_from_generic (a_msg: O_GENERIC_MESSAGE) is -- Create from a generic message. do Precursor (a_msg) end feature -- Access namespace: STRING_8 is -- Namespace of the message type. once Result := community_namespace end type: STRING_8 is -- Type of the message. once Result := community_list_type end arguments: HASH_TABLE [STRING, STRING] is -- Named arguments. do Result := Precursor end end