mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 04:36:49 +08:00

the old get_instance() method in ZCL_ABAPGIT_PERSIST_SETTINGS has been moved to a method in zcl_abapgit_persist_factory, plus interface added. Added to persist injector
13 lines
277 B
ABAP
13 lines
277 B
ABAP
INTERFACE zif_abapgit_persist_settings PUBLIC.
|
|
|
|
METHODS modify
|
|
IMPORTING
|
|
!io_settings TYPE REF TO zcl_abapgit_settings
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS read
|
|
RETURNING
|
|
VALUE(ro_settings) TYPE REF TO zcl_abapgit_settings .
|
|
|
|
ENDINTERFACE.
|