moved wsf_extension inside wsf/extension as wsf/wsf_extension.ecf
added wsf/session as wsf/wsf_session.ecf In descendants of WSF_HANDLER , we can keep the result of new_mapping as WSF_ROUTER_MAPPING
This commit is contained in:
@@ -18,9 +18,9 @@ feature -- Execution
|
||||
|
||||
feature {WSF_ROUTER} -- Mapping
|
||||
|
||||
new_mapping (a_uri: READABLE_STRING_8): WSF_STARTS_WITH_MAPPING
|
||||
new_mapping (a_uri: READABLE_STRING_8): WSF_ROUTER_MAPPING
|
||||
do
|
||||
create Result.make (a_uri, Current)
|
||||
create {WSF_STARTS_WITH_MAPPING} Result.make (a_uri, Current)
|
||||
end
|
||||
|
||||
note
|
||||
|
||||
@@ -18,9 +18,9 @@ feature -- Execution
|
||||
|
||||
feature {WSF_ROUTER} -- Mapping
|
||||
|
||||
new_mapping (a_uri: READABLE_STRING_8): WSF_URI_MAPPING
|
||||
new_mapping (a_uri: READABLE_STRING_8): WSF_ROUTER_MAPPING
|
||||
do
|
||||
create Result.make (a_uri, Current)
|
||||
create {WSF_URI_MAPPING} Result.make (a_uri, Current)
|
||||
end
|
||||
|
||||
note
|
||||
|
||||
@@ -18,9 +18,9 @@ feature -- Execution
|
||||
|
||||
feature {WSF_ROUTER} -- Mapping
|
||||
|
||||
new_mapping (a_tpl: READABLE_STRING_8): WSF_URI_TEMPLATE_MAPPING
|
||||
new_mapping (a_tpl: READABLE_STRING_8): WSF_ROUTER_MAPPING
|
||||
do
|
||||
create Result.make (a_tpl, Current)
|
||||
create {WSF_URI_TEMPLATE_MAPPING} Result.make (a_tpl, Current)
|
||||
end
|
||||
|
||||
note
|
||||
|
||||
@@ -12,9 +12,9 @@ inherit
|
||||
|
||||
feature {WSF_ROUTER} -- Mapping
|
||||
|
||||
new_mapping (a_tpl: READABLE_STRING_8): WSF_URI_TEMPLATE_CONTEXT_MAPPING [C]
|
||||
new_mapping (a_tpl: READABLE_STRING_8): WSF_ROUTER_MAPPING
|
||||
do
|
||||
create Result.make (a_tpl, Current)
|
||||
create {WSF_URI_TEMPLATE_CONTEXT_MAPPING [C]} Result.make (a_tpl, Current)
|
||||
end
|
||||
|
||||
note
|
||||
|
||||
Reference in New Issue
Block a user