Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"license": "",
"dependencies": {
"@abaplint/cli": "^2.119.12",
"@abaplint/runtime": "^2.13.19",
"@abaplint/runtime": "^2.13.20",
"@abaplint/database-sqlite": "^2.11.78",
"@abaplint/transpiler-cli": "^2.13.19"
"@abaplint/transpiler-cli": "^2.13.20"
}
}
16 changes: 16 additions & 0 deletions src/cl_proxy_basis.clas.abap
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
CLASS cl_proxy_basis DEFINITION PUBLIC.
PUBLIC SECTION.

INTERFACES if_proxy_basis.

ALIASES get_protocol FOR if_proxy_basis~get_protocol.

ENDCLASS.

CLASS cl_proxy_basis IMPLEMENTATION.

METHOD if_proxy_basis~get_protocol.
RETURN. " todo, implement method
ENDMETHOD.

ENDCLASS.
13 changes: 1 addition & 12 deletions src/cl_proxy_client.clas.abap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CLASS cl_proxy_client DEFINITION PUBLIC.
CLASS cl_proxy_client DEFINITION PUBLIC INHERITING FROM cl_proxy_basis.
PUBLIC SECTION.
INTERFACES if_proxy_client.

Expand All @@ -10,13 +10,6 @@ CLASS cl_proxy_client DEFINITION PUBLIC.
RAISING
cx_ai_system_fault.

METHODS get_protocol
IMPORTING
protocol_name TYPE string
RETURNING
VALUE(protocol) TYPE REF TO if_wsprotocol
RAISING
cx_ai_system_fault.
ENDCLASS.

CLASS cl_proxy_client IMPLEMENTATION.
Expand All @@ -29,8 +22,4 @@ CLASS cl_proxy_client IMPLEMENTATION.
RETURN.
ENDMETHOD.

METHOD get_protocol.
RETURN.
ENDMETHOD.

ENDCLASS.
16 changes: 0 additions & 16 deletions src/cl_proxy_client.clas.xml

This file was deleted.

11 changes: 11 additions & 0 deletions src/if_proxy_basis.intf.abap
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
INTERFACE if_proxy_basis PUBLIC.

METHODS get_protocol
IMPORTING
protocol_name TYPE string
RETURNING
VALUE(protocol) TYPE REF TO if_wsprotocol
RAISING
cx_ai_system_fault.

ENDINTERFACE.
15 changes: 0 additions & 15 deletions src/if_proxy_client.intf.xml

This file was deleted.

15 changes: 0 additions & 15 deletions src/if_wsprotocol.intf.xml

This file was deleted.