|
NAMEOpenXPKI::Server::Workflow::WFObjectDESCRIPTIONsub _get_data_ref : RESTRICTED { my ($self) = @_; return $data_ref{ ident $self }; }sub _will_need_update : RESTRICTED { $need_update{ ident $self }++; } } 1; __END__ NAMEOpenXPKI::Server::Workflow::WFObjectDESCRIPTIONWFObject is the root class for the data objects like WFArray and WFHash. It is used to manage the basic attributes and serialization needed by the inheriting classes. It inherits from Class::Std.SYNOPSISmy $queue = OpenXPKI::Server::Workflow::WFObject::WFArray->new( { workflow => $workflow, context_key => 'my_queue' } ); print "my queue contains ", $queue->count, " element(s).\n"; DEFAULT ACCESSORSDefault accessor methods are available for the supported properties, depending on how they are declared.
PROPERTIESworkflowA reference to the current workflow instance.context_keyThe name of the workflow context parameter where the data structure is (to be) stored.INTERNAL SUBROUTINESThe following subroutines are only available to the class itself._readReads and deserializes the contents of the workflow context parameter.
Visit the GSP FreeBSD Man Page Interface. |