Kernel::System::DataValidation::Validator::Process::ProcessEntityID

NAME

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

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 ProcessEntityID in the database. For more information about the process management backend, please refer to Kernel::System::ProcessManagement::Process.

    my $True = $Validator->Check(
        Value => 'Process-631b5a58cda6892c5ceb6b36072490be',
    );

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