indexing description: "Remove FOAF from user" author: "Ueli Weiss" date: "$Date$" revision: "$Revision$" class USER_REMOVE_FOAF inherit AUTH_USE_CASE O_USER_CONSTANTS create make feature -- Access namespace: STRING is -- Namespace of this use case. once Result := user_namespace end type: STRING is -- Message type of this use case. once Result := user_remove_foaf_type end feature -- Basic operation start (a_msg: O_MESSAGE) is -- Start the use case by a_msg. local l_msg: O_USER_REMOVE_FOAF_MESSAGE do l_msg ?= a_msg check valid_message: l_msg /= Void end -- check if the user is authorized and act accordingly is_authorized_for_project (l_msg, "user_remove_foaf", 0, auth_node) end feature {NONE} -- Callbacks handle_auth_success (a_msg: O_MESSAGE) is -- a_msg has been authorized, execute it. do -- send message to storage node forward_to_node (a_msg, "storage1") end end