mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +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
37 lines
1.0 KiB
ABAP
37 lines
1.0 KiB
ABAP
INTERFACE zif_abapgit_longtexts
|
|
PUBLIC .
|
|
|
|
|
|
METHODS changed_by
|
|
IMPORTING
|
|
!iv_object_name TYPE sobj_name
|
|
!iv_longtext_id TYPE dokil-id
|
|
!it_dokil TYPE zif_abapgit_definitions=>ty_dokil_tt OPTIONAL
|
|
RETURNING
|
|
VALUE(rv_user) TYPE xubname
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS serialize
|
|
IMPORTING
|
|
!iv_longtext_name TYPE string DEFAULT 'LONGTEXTS'
|
|
!iv_object_name TYPE sobj_name
|
|
!iv_longtext_id TYPE dokil-id
|
|
!it_dokil TYPE zif_abapgit_definitions=>ty_dokil_tt OPTIONAL
|
|
!ii_xml TYPE REF TO zif_abapgit_xml_output
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS deserialize
|
|
IMPORTING
|
|
!iv_longtext_name TYPE string DEFAULT 'LONGTEXTS'
|
|
!ii_xml TYPE REF TO zif_abapgit_xml_input
|
|
!iv_master_language TYPE langu
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS delete
|
|
IMPORTING
|
|
!iv_object_name TYPE sobj_name
|
|
!iv_longtext_id TYPE dokil-id
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
ENDINTERFACE.
|