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

* lcl_background to global * lcl_branch_overview to global * lcl_services_git to global * lcl_services_repo and lcl_services_db to global * lcl_services_abapgit to global * lcl_gui_chunk_lib to global * lcl_gui_view_tutorial to global * lif_auth to global * lcl_auth and lcl_gui_view_repo to global * lcl_view_repo * lcl_gui_page_syntax to global * 2 pages to global * refactor router, less dynamic references * background pages to global * branch overview to global * settings page to global * repo settings page to global * explore page to global * diff page to global * debug info to global * main page to global * refactor router, no dynamic references * db pages to global * router to global * gui to global * clean up includes * move type definnition to interface to avoid syntax error after abapmerge * move types to interface * move types to interface * rename tyep * move type * move types * move type
16 lines
423 B
ABAP
16 lines
423 B
ABAP
INTERFACE zif_abapgit_auth PUBLIC.
|
|
|
|
TYPES: ty_authorization TYPE string.
|
|
|
|
CONSTANTS: BEGIN OF gc_authorization,
|
|
uninstall TYPE ty_authorization VALUE 'UNINSTALL',
|
|
END OF gc_authorization.
|
|
|
|
METHODS:
|
|
is_allowed
|
|
IMPORTING iv_authorization TYPE ty_authorization
|
|
iv_param TYPE string OPTIONAL
|
|
RETURNING VALUE(rv_allowed) TYPE abap_bool.
|
|
|
|
ENDINTERFACE.
|