Skip to content

Commit 21a7bf1

Browse files
committed
IF_HTTP_SERVICE_EXTENSION
1 parent d292c80 commit 21a7bf1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/zcl_http_service_test.clas.abap

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CLASS zcl_http_service_test DEFINITION
44

55
PUBLIC SECTION.
66

7-
INTERFACES if_http_extension.
7+
INTERFACES if_http_service_extension.
88

99
PROTECTED SECTION.
1010
PRIVATE SECTION.
@@ -15,7 +15,7 @@ ENDCLASS.
1515
CLASS zcl_http_service_test IMPLEMENTATION.
1616

1717

18-
METHOD if_http_extension~handle_request.
19-
server->response->set_cdata( 'Hello!' ).
18+
METHOD if_http_service_extension~handle_request.
19+
response->set_text( 'Hello!' ).
2020
ENDMETHOD.
2121
ENDCLASS.

0 commit comments

Comments
 (0)