Kernel::System::DataValidation::Validator::Process::ActivityDialogEntityID

NAME

Kernel::System::DataValidation::Validator::Process::ActivityDialogEntityID – Verifies a given ActivityDialogEntityID.

PUBLIC INTERFACE

Provides a Check method, that will be called by the Kernel::System::DataValidation backend.

Example()

Returns an example of a possible value to be verified.

Check()

Lookups the given ActivityDialogEntityID in the database. For more information about the process management backend, please refer to Kernel::System::ProcessManagement::Process.

    my $True = $Validator->Check(
        Value => 'ActivityDialog-c1813344d2a10186c4a480dfd71a4aa9',
    );

    my $False = $Validator->Check(
        Value => 'WrongActivityDialogEntityID',
    );
Scroll to Top