Skip to content

Commit cb3de17

Browse files
committed
renamed HTTP_HEADER_BUILDER as HTTP_HEADER_MODIFIER
1 parent da92d2d commit cb3de17

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

library/network/protocol/http/src/http_header.e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class
2525
inherit
2626
ITERABLE [READABLE_STRING_8]
2727

28-
HTTP_HEADER_BUILDER
28+
HTTP_HEADER_MODIFIER
2929

3030
create
3131
make,

library/network/protocol/http/src/http_header_builder.e renamed to library/network/protocol/http/src/http_header_modifier.e

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
note
22
description: "[
3-
The class provides an easy way to build HTTP header text
3+
The class provides an easy way to build and modify HTTP header text
44
thanks to add_header (..) and put_header (..)
55
66
You will also find some helper features to help coding most common usages
@@ -20,7 +20,7 @@ note
2020
revision: "$Revision$"
2121

2222
deferred class
23-
HTTP_HEADER_BUILDER
23+
HTTP_HEADER_MODIFIER
2424

2525
inherit
2626
ITERABLE [READABLE_STRING_8]

library/server/wsf/src/wsf_response.e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ feature {WSF_RESPONSE_EXPORTER} -- Header output operation
172172

173173
feature -- Header access
174174

175-
header: HTTP_HEADER_BUILDER
175+
header: HTTP_HEADER_MODIFIER
176176
-- Associated header builder interface.
177177
local
178178
res: like internal_response_header

library/server/wsf/src/wsf_response_header.e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class
99
WSF_RESPONSE_HEADER
1010

1111
inherit
12-
HTTP_HEADER_BUILDER
12+
HTTP_HEADER_MODIFIER
1313

1414
WSF_RESPONSE_EXPORTER -- to access WSF_RESPONSE.internal_header
1515

0 commit comments

Comments
 (0)