abapGit/src/zif_abapgit_exit.intf.abap
Lars Hvam be0b9d0df4
exit to modify http client #1252 (#1253)
plus make sure the program does not dump when implementations are missing in the exit
2018-03-18 15:22:16 +01:00

25 lines
719 B
ABAP

INTERFACE zif_abapgit_exit PUBLIC.
TYPES:
ty_icm_sinfo2_tt TYPE STANDARD TABLE OF icm_sinfo2 WITH DEFAULT KEY .
METHODS:
change_local_host
CHANGING ct_hosts TYPE ty_icm_sinfo2_tt,
allow_sap_objects
RETURNING VALUE(rv_allowed) TYPE abap_bool,
change_proxy_url
IMPORTING iv_repo_url TYPE csequence
CHANGING c_proxy_url TYPE string,
change_proxy_port
IMPORTING iv_repo_url TYPE csequence
CHANGING c_proxy_port TYPE string,
change_proxy_authentication
IMPORTING iv_repo_url TYPE csequence
CHANGING c_proxy_authentication TYPE abap_bool,
http_client
IMPORTING
ii_client TYPE REF TO if_http_client.
ENDINTERFACE.