indexing
	description: "Sets the account to is_enabled"
	author: "Ueli Weiss"
	date: "$Date$"
	revision: "$Revision$"

class
	USER_CHANGE_ACCOUNT_ENABLED

inherit
	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_change_account_enabled_type
		end

feature -- Basic operation

	start (a_msg: O_MESSAGE) is
			-- Start the use case by a_msg.
		do
			forward_to_node (a_msg, "storage1")
		end

end