
#################
NotificationEvent
#################


****
NAME
****


Kernel::System::Command::ExportImport::NotificationEvent


***********
DESCRIPTION
***********


NotificationEvent related functions to import/export command behavior.


****************
PUBLIC INTERFACE
****************


new()
=====


Don't use the constructor directly, use the ObjectManager instead:


.. code-block:: perl

     my $CommandExportImportNotificationEventObject = $Kernel::OM->Get('Kernel::System::Command::ExportImport::Base');



ExportConfigure()
=================


add options/arguments to the command


.. code-block:: perl

     my %OptionsConfig = $CommandExportImportNotificationEventObject->ExportConfigure( %Params );



ExportPreCheck()
================


performs pre check for exporting


.. code-block:: perl

     my $Success = $CommandExportImportNotificationEventObject->ExportPreCheck( %Params );



ExportHandle()
==============


perform command export operation


.. code-block:: perl

     my $Result = $CommandExportImportNotificationEventObject->ExportHandle( %Params );




