mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00

* Refactoring of ZCL_ABAPGIT_ENVIRONMENT #2810 * fixes saplint issues * fixes saplint isues * fixes saplint issues * fixes issue based on review * align zcl_abapgit_objects.clas.abap to master * add the test class again
19 lines
478 B
ABAP
19 lines
478 B
ABAP
INTERFACE zif_abapgit_environment
|
|
PUBLIC.
|
|
METHODS is_sap_cloud_platform
|
|
RETURNING
|
|
VALUE(rv_result) TYPE abap_bool.
|
|
METHODS is_merged
|
|
RETURNING
|
|
VALUE(rv_result) TYPE abap_bool.
|
|
METHODS is_repo_object_changes_allowed
|
|
RETURNING
|
|
VALUE(rv_result) TYPE abap_bool.
|
|
METHODS compare_with_inactive
|
|
RETURNING
|
|
VALUE(rv_result) TYPE abap_bool.
|
|
METHODS is_restart_required
|
|
RETURNING
|
|
VALUE(rv_result) TYPE abap_bool.
|
|
ENDINTERFACE.
|