mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-03 05:18:59 +08:00

* Part 1 * Part 2 * Part 3 * Lint * Part 5 * Part 6 * Part 7 * Part 8 * Part 9 * Enforce type naming prefix All types need to start with TY_... * Fix local types
147 lines
3.8 KiB
ABAP
147 lines
3.8 KiB
ABAP
INTERFACE zif_abapgit_persist_user
|
|
PUBLIC .
|
|
|
|
TYPES ty_favorites TYPE zif_abapgit_persistence=>ty_repo_keys .
|
|
|
|
METHODS get_changes_only
|
|
RETURNING
|
|
VALUE(rv_changes_only) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_default_git_user_email
|
|
RETURNING
|
|
VALUE(rv_email) TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_default_git_user_name
|
|
RETURNING
|
|
VALUE(rv_username) TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_diff_unified
|
|
RETURNING
|
|
VALUE(rv_diff_unified) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_favorites
|
|
RETURNING
|
|
VALUE(rt_favorites) TYPE ty_favorites
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_hide_files
|
|
RETURNING
|
|
VALUE(rv_hide) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_repo_git_user_email
|
|
IMPORTING
|
|
!iv_url TYPE zif_abapgit_persistence=>ty_repo-url
|
|
RETURNING
|
|
VALUE(rv_email) TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_repo_git_user_name
|
|
IMPORTING
|
|
!iv_url TYPE zif_abapgit_persistence=>ty_repo-url
|
|
RETURNING
|
|
VALUE(rv_username) TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_repo_last_change_seen
|
|
IMPORTING
|
|
!iv_url TYPE zif_abapgit_persistence=>ty_repo-url
|
|
RETURNING
|
|
VALUE(rv_version) TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_repo_login
|
|
IMPORTING
|
|
!iv_url TYPE zif_abapgit_persistence=>ty_repo-url
|
|
RETURNING
|
|
VALUE(rv_login) TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_repo_show
|
|
RETURNING
|
|
VALUE(rv_key) TYPE zif_abapgit_persistence=>ty_repo-key
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS is_favorite_repo
|
|
IMPORTING
|
|
!iv_repo_key TYPE zif_abapgit_persistence=>ty_repo-key
|
|
RETURNING
|
|
VALUE(rv_yes) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS set_default_git_user_email
|
|
IMPORTING
|
|
!iv_email TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS set_default_git_user_name
|
|
IMPORTING
|
|
!iv_username TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS set_repo_git_user_email
|
|
IMPORTING
|
|
!iv_url TYPE zif_abapgit_persistence=>ty_repo-url
|
|
!iv_email TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS set_repo_git_user_name
|
|
IMPORTING
|
|
!iv_url TYPE zif_abapgit_persistence=>ty_repo-url
|
|
!iv_username TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS set_repo_last_change_seen
|
|
IMPORTING
|
|
!iv_url TYPE zif_abapgit_persistence=>ty_repo-url
|
|
!iv_version TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS set_repo_login
|
|
IMPORTING
|
|
!iv_url TYPE zif_abapgit_persistence=>ty_repo-url
|
|
!iv_login TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS set_repo_show
|
|
IMPORTING
|
|
!iv_key TYPE zif_abapgit_persistence=>ty_repo-key
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS toggle_changes_only
|
|
RETURNING
|
|
VALUE(rv_changes_only) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS toggle_diff_unified
|
|
RETURNING
|
|
VALUE(rv_diff_unified) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS toggle_favorite
|
|
IMPORTING
|
|
!iv_repo_key TYPE zif_abapgit_persistence=>ty_repo-key
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS toggle_hide_files
|
|
RETURNING
|
|
VALUE(rv_hide) TYPE abap_bool
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS get_settings
|
|
RETURNING
|
|
VALUE(rs_user_settings) TYPE zif_abapgit_definitions=>ty_s_user_settings
|
|
RAISING
|
|
zcx_abapgit_exception.
|
|
METHODS set_settings
|
|
IMPORTING
|
|
is_user_settings TYPE zif_abapgit_definitions=>ty_s_user_settings
|
|
RAISING
|
|
zcx_abapgit_exception.
|
|
|
|
ENDINTERFACE.
|