Renamed "ext" folder as "contrib" folder and reorganized a little bit

Renamed any *_APPLICATION as *_SERVICE
   mainly because those components
   such as WSF_APPLICATION, renamed as WSF_SERVICE
   are not always the main application entry, and "service" describe them better
Minor implementation change in WSF_REQUEST
Cosmetics
This commit is contained in:
Jocelyn Fiat
2011-11-17 15:50:30 +01:00
parent cc11debf08
commit 49c3e8e789
52 changed files with 134 additions and 144 deletions

View File

@@ -8,12 +8,12 @@ class
APP_SERVER
inherit
APP_APPLICATION
APP_SERVICE
redefine
execute
end
REST_APPLICATION_GATEWAY
REST_SERVICE_GATEWAY
create
make

View File

@@ -1,8 +1,8 @@
deferred class
REST_APPLICATION_GATEWAY
REST_SERVICE_GATEWAY
inherit
WSF_APPLICATION
WSF_SERVICE
feature -- Access

View File

@@ -1,8 +1,8 @@
deferred class
REST_APPLICATION_GATEWAY
REST_SERVICE_GATEWAY
inherit
WSF_APPLICATION
WSF_SERVICE
feature -- Access

View File

@@ -1,14 +1,14 @@
deferred class
REST_APPLICATION_GATEWAY
REST_SERVICE_GATEWAY
inherit
WSF_APPLICATION
WSF_SERVICE
feature -- Access
build_gateway_and_launch
local
app: NINO_APPLICATION
app: NINO_SERVICE
port_number: INTEGER
base_url: STRING
do

View File

@@ -1,14 +1,14 @@
note
description: "Summary description for {APP_APPLICATION}."
description: "Summary description for {APP_SERVICE}."
author: ""
date: "$Date$"
revision: "$Revision$"
deferred class
APP_APPLICATION
APP_SERVICE
inherit
REST_APPLICATION_I [APP_REQUEST_HANDLER, APP_REQUEST_HANDLER_CONTEXT]
REST_SERVICE_I [APP_REQUEST_HANDLER, APP_REQUEST_HANDLER_CONTEXT]
redefine
router
end