File tree Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Expand file tree Collapse file tree 2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 15
15
},
16
16
"license" : " MIT" ,
17
17
"dependencies" : {
18
- "@abaplint/cli" : " ^2.113.175 " ,
18
+ "@abaplint/cli" : " ^2.113.183 " ,
19
19
"@abaplint/database-pg" : " ^2.10.24" ,
20
20
"@abaplint/database-sqlite" : " ^2.11.0" ,
21
- "@abaplint/runtime" : " ^2.11.32 " ,
22
- "@abaplint/transpiler-cli" : " ^2.11.32 " ,
21
+ "@abaplint/runtime" : " ^2.11.45 " ,
22
+ "@abaplint/transpiler-cli" : " ^2.11.45 " ,
23
23
"0x" : " ^6.0.0"
24
24
}
25
25
}
Original file line number Diff line number Diff line change @@ -32,11 +32,20 @@ CLASS cl_oa2c_config_writer_api DEFINITION PUBLIC.
32
32
METHODS read
33
33
EXPORTING
34
34
e_client_id TYPE string
35
+ e_client_uuid TYPE string
35
36
e_authorization_endpoint TYPE string
36
37
e_token_endpoint TYPE string
37
38
e_target_path TYPE string
38
39
e_configured_granttype TYPE oa2c_granttype.
39
40
41
+ METHODS set_profiles
42
+ IMPORTING
43
+ it_profiles TYPE any .
44
+
45
+ METHODS set_client_secret
46
+ IMPORTING
47
+ i_client_secret TYPE string .
48
+
40
49
PRIVATE SECTION .
41
50
TYPES : BEGIN OF ty_config,
42
51
configuration TYPE oa2c_configuration,
@@ -56,6 +65,14 @@ ENDCLASS.
56
65
57
66
CLASS cl_oa2c_config_writer_api IMPLEMENTATION .
58
67
68
+ METHOD set_client_secret .
69
+ ASSERT 1 = 'todo' .
70
+ ENDMETHOD .
71
+
72
+ METHOD set_profiles .
73
+ ASSERT 1 = 'todo' .
74
+ ENDMETHOD .
75
+
59
76
METHOD create .
60
77
ASSERT i_configured_granttype = c_granttype_cc.
61
78
You can’t perform that action at this time.
0 commit comments