Index

DKWorkFlowTemplateFed

Purpose:

DKWorkFlowTemplateFed is an object oriented representation of a workflow template in the workflow engine. Hierarchy: DKWorkFlowTemplateFed

Class summary:

class DKWorkFlowTemplateFed 
{
   public:
     DKWorkFlowTemplateFed(DKWorkFlowServiceFed * service,
                              const char * name);
     virtual ~DKWorkFlowTemplateFed();
     virtual DKString name();
     virtual DKString description();
     virtual DKTimestamp* creationTime();
     virtual DKTimestamp* modifiedTime();
     virtual void retrieve();
};

Members:

Constructors and destructor
The constructor constructs a DKWorkFlowTemplateFed object representing a workflow template in the workflow engine. The destructor deletes the DKWorkFlowTemplateFed object.
DKWorkFlowTemplateFed(DKWorkFlowServiceFed * service, const char * name);
     ~DKWorkFlowTemplateFed();  

Member functions

name
Returns the name the workflow template.
DKString name();  

description
Returns the description of the workflow template.
 DKString description();        
 

creationTime
Returns the creation time the workflow template.
DKTimestamp* creationTime();     

modifiedTime
Returns the last modification time of the workflow template.
DKTimestamp* modifiedTime();     

retrieve
Retrieves or refreshes the information of the workflow template.
void retrieve();           

(c) Copyright International Business Machines Corporation 1996, 2003. IBM Corp. All rights reserved.