started adding new workflow based approval process

This commit is contained in:
JT Smith 2006-03-15 20:15:55 +00:00
parent 9ff3308126
commit eb6a7a9416
14 changed files with 676 additions and 89 deletions

View file

@ -151,19 +151,25 @@ sub DESTROY {
#-------------------------------------------------------------------
=head2 execute ( object )
=head2 execute ( object, instance )
This method will be called during workflow operation. It needs to be overridden by the base classes.
This method will be called during workflow operation. It needs to be mutated by the sub classes.
=head2 object
A reference to some object that will be passed in to this activity for an action to be taken on it.
=head2 instance
A reference to the workflow instance object.
=cut
sub execute {
my $self = shift;
my $object = shift;
my $instance = shift;
return 1;
}