We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b99151c commit ebdcaafCopy full SHA for ebdcaaf
src/http/cl_web_http_utility.clas.abap
@@ -7,6 +7,13 @@ CLASS cl_web_http_utility DEFINITION PUBLIC.
7
RETURNING
8
VALUE(unescaped) TYPE string.
9
10
+ CLASS-METHODS escape_url
11
+ IMPORTING
12
+ unescaped TYPE string
13
+ options TYPE i OPTIONAL
14
+ RETURNING
15
+ VALUE(escaped) TYPE string.
16
+
17
CLASS-METHODS decode_x_base64
18
IMPORTING
19
encoded TYPE string
@@ -60,6 +67,10 @@ CLASS cl_web_http_utility IMPLEMENTATION.
60
67
options = options ).
61
68
ENDMETHOD.
62
69
70
+ METHOD escape_url.
71
+ escaped = cl_http_utility=>escape_url( unescaped ).
72
+ ENDMETHOD.
73
63
74
METHOD decode_x_base64.
64
75
decoded = cl_http_utility=>decode_x_base64( encoded ).
65
76
0 commit comments