abapGit/src/objects/ecatt/zif_abapgit_ecatt_download.intf.abap
Christian Günter b588daf5f7 ECATT: remove dynamic method calls #2407 (#2411)
* ECATT: remove dynamic method calls

This commit introduces two new interfaces to remove dynamic method calls.
- ZIF_ABAPGIT_ECATT_DOWNLOAD
- ZIF_ABAPGIT_ECATT_UPLOAD

* ECATT: Rename method

Rename method z_set_stream_for_upload to set_stream_for_upload
as we now use our own interface and there's no risk that SAP 
standard introduces a method with the same name
2019-02-18 01:30:14 -08:00

10 lines
153 B
ABAP

INTERFACE zif_abapgit_ecatt_download
PUBLIC .
METHODS:
get_xml_stream
RETURNING
VALUE(rv_xml_stream) TYPE xstring.
ENDINTERFACE.