File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -22,34 +22,26 @@ Create a new package and define a new HTTP handler class:
2222
2323``` abap [ABAP]
2424CLASS zcl_my_abap2UI5_http_handler DEFINITION PUBLIC.
25-
2625 PUBLIC SECTION.
2726 INTERFACES if_http_extension.
28-
2927ENDCLASS.
3028
3129CLASS zcl_my_abap2UI5_http_handler IMPLEMENTATION.
3230 METHOD if_http_extension~handle_request.
33-
3431 z2ui5_cl_http_handler=>run( server ).
35-
3632 ENDMETHOD.
3733ENDCLASS.
3834```
3935
4036``` abap [ABAP Cloud]
4137CLASS zcl_my_abap2UI5_http_handler DEFINITION PUBLIC.
42-
4338 PUBLIC SECTION.
4439 INTERFACES if_http_service_extension.
45-
4640ENDCLASS.
4741
4842CLASS zcl_my_abap2UI5_http_handler IMPLEMENTATION.
4943 METHOD if_http_service_extension~handle_request.
50-
5144 z2ui5_cl_http_handler=>run( req = request res = response ).
52-
5345 ENDMETHOD.
5446ENDCLASS.
5547```
You can’t perform that action at this time.
0 commit comments