Files
EWF/library/server/wsf/src/response/wsf_default_response.e
Jocelyn Fiat aa65c16957 Breaking changes:
added `a_request_methods' argument to WSF_ROUTER_SELF_DOCUMENTATION_HANDLER.mapping_documentation
 added similar argument to WSF_ROUTER_SELF_DOCUMENTATION_ROUTER_MAPPING.documentation
Renamed WSF_ROUTER_METHODS as WSF_REQUEST_METHODS
Enhanced WSF_REQUEST_METHODS with new has_... function
Added WSF_ROUTER_VISITOR and WSF_ROUTER_ITERATOR that may be useful to iterate inside the router.
   we may improve the implementation of the router using those visitors in the future.
Improved the WSF_DEFAULT_RESPONSE to embedded suggested items (typically based on pseudo self documented router)
2012-12-19 16:42:26 +01:00

62 lines
1.1 KiB
Plaintext

note
description: "Summary description for {WSF_DEFAULT_RESPONSE}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
WSF_DEFAULT_RESPONSE
inherit
WSF_RESPONSE_MESSAGE
create
make
feature {NONE} -- Initialization
make (req: WSF_REQUEST)
-- Initialize Current with request `req'
do
request := req
end
feature -- Access
request: WSF_REQUEST
-- Associated request.
feature {WSF_RESPONSE} -- Output
send_to (res: WSF_RESPONSE)
-- Send Current message to `res'
--
-- This feature should be called via `{WSF_RESPONSE}.send (obj)'
-- where `obj' is the current object
local
msg: WSF_RESPONSE_MESSAGE
req: like request
do
req := request
if req.is_request_method ({HTTP_REQUEST_METHODS}.method_trace) then
msg := trace_message (req)
else
msg := not_found_message (req)
end
res.send (msg)
end
feature {NONE} -- Implementation
trace_message (req: WSF_REQUEST): WSF_TRACE_RESPONSE
do
create Result.make (req)
end
not_found_message (req: WSF_REQUEST): WSF_NOT_FOUND_RESPONSE
do
create Result.make (req)
end
end