Uses of Class
wt.workflow.engine.WfContainer

Packages that use WfContainer
com.ptc.netmarkets.msproject   
com.ptc.netmarkets.nmixb   
com.ptc.netmarkets.projmgmt   
wt.clients.workflow.manager   
wt.dataops.containermove   
wt.projmgmt.definer   
wt.projmgmt.execution   
wt.projmgmt.monitor   
wt.projmgmt.msproject   
wt.projmgmt.msproject.mppobject   
wt.workflow.definer
Provides workflow classes responsible for the definition of processes, activities, and the other objects that compose the workflow network. 
wt.workflow.engine
Provides workflow classes responsible for the flow of control and data from an execution point of view. 
wt.workflow.robots
Provides workflow classes responsible for the execution of robot activities that are executed without human intervention. 
wt.workflow.work
Provides workflow classes responsible for managing the work assigned to individual users. 
 

Uses of WfContainer in com.ptc.netmarkets.msproject
 

Methods in com.ptc.netmarkets.msproject that return WfContainer
static WfContainer NmMsProjectHelper.getContainer(NmCommandBean cb, Hashtable params)
          Return the WfContainer that is referenced byby data in the params or by the OID data in the specified NmCommandBean.
 

Methods in com.ptc.netmarkets.msproject with parameters of type WfContainer
private  File StandardNmMsProjectService.export(WfContainer c, ImportExportInfo info)
          Export XML to the file specified by tempPath.
private static String NmMsProjectCommands.getFilename(WfContainer c, Locale locale)
          Get an appropriate XML filename based on the name of the specified WfContainer.
 

Uses of WfContainer in com.ptc.netmarkets.nmixb
 

Methods in com.ptc.netmarkets.nmixb with parameters of type WfContainer
private  void ProjectPlanStructCopyHelper.saveContainerMap(WfContainer source, WfContainer target)
           
private  WfConnector ProjectPlanStructCopyHelper.getConnector(WfContainer container, WfConnectorType type)
           
 void ProjectPlanStructCopyHelper.copyContainmentLinks(WfContainer source_container, WfContainer target_container)
           
 QueryResult ProjectPlanStructCopyHelper.getWfNodes(WfContainer container)
           
 

Uses of WfContainer in com.ptc.netmarkets.projmgmt
 

Methods in com.ptc.netmarkets.projmgmt with parameters of type WfContainer
private  Milestone StandardNmProjMgmtService.createMilestone(ProjectPlan plan, WfContainer container, Hashtable params)
           
private  ProjectActivity StandardNmProjMgmtService.createProjectActivity(ProjectPlan plan, WfContainer container, Hashtable params)
           
private  ProjectProxy StandardNmProjMgmtService.createProjectProxy(ProjectPlan plan, WfContainer container, Hashtable params)
           
private  SummaryActivity StandardNmProjMgmtService.createSummaryActivity(ProjectPlan plan, WfContainer container, Hashtable params)
           
 

Uses of WfContainer in wt.clients.workflow.manager
 

Methods in wt.clients.workflow.manager with parameters of type WfContainer
private static void PMServer.loadInstance(MonitorModel pMonitorModel, WfContainer wContainer, Vector proxies)
           
 

Uses of WfContainer in wt.dataops.containermove
 

Methods in wt.dataops.containermove with parameters of type WfContainer
private static void StandardContainerMoveService.getAllWfProcessObjects(WfContainer container, WTCollection objs)
           
private static QueryResult StandardContainerMoveService.getContainerNodes(WfContainer container)
           
 

Uses of WfContainer in wt.projmgmt.definer
 

Methods in wt.projmgmt.definer with parameters of type WfContainer
 WfNode SummaryActivityTemplate.createWfNode(WfContainer container)
          Instantiates a summary activity that references the template.
 ProjectNode StandardProjDefinerService.createNodeTemplate(WfContainer container, ProjectNode node)
          Creates a project node template given the node container (plan or summary) and the node instance.
 ProjectNode StandardProjDefinerService.addNode(ProjectNode node, WfContainer container)
          Adds node to container passed as argument.
 void StandardProjDefinerService.createStartEndConnectors(WfContainerTemplate template, WfContainer container)
          Creates the start and end connectors for a container passed as arguments.
protected  WfConnectorTemplate StandardProjDefinerService.createInConnectors(WfContainer container, ProjectNode node)
           
 WfNode ProjectProxyTemplate.createWfNode(WfContainer container)
          Instantiates a project proxy that references the template.
 WfNode ProjectPlanTemplate.createWfNode(WfContainer container)
          Instantiates a process that references the template.
 WfNode ProjectActivityTemplate.createWfNode(WfContainer container)
          Instantiates a project activity that references the template.
 ProjectNode ProjDefinerServiceSvr.createNodeTemplate(WfContainer container, ProjectNode node)
          Creates a project node template given the node container (plan or summary) and the node instance.
 ProjectNode ProjDefinerServiceSvr.addNode(ProjectNode node, WfContainer container)
          Adds node to container passed as argument.
 void ProjDefinerServiceSvr.createStartEndConnectors(WfContainerTemplate template, WfContainer container)
          Creates the start and end connectors for a container passed as arguments.
 WfNode MilestoneTemplate.createWfNode(WfContainer container)
          Instantiates a milestone that references the template.
 

Uses of WfContainer in wt.projmgmt.execution
 

Subclasses of WfContainer in wt.projmgmt.execution
 class ProjectPlan
          The ProjectPlan class represents a container for activities, resources, deliverables and their relationships that are involved in the execution of a project.
 class SummaryActivity
          Container of project manager nodes.
 

Methods in wt.projmgmt.execution that return WfContainer
 WfContainer SummaryActivity.getPerformer()
          Returns the process associated with the requester.
private  WfContainer StandardProjExecService.getNewContainer(ProjectNode node1, ProjectNode node2)
          Returns the new container to which node1 should be added.
 WfContainer ProjectProxy.getPerformer()
          Returns the process associated with the requester.
 

Methods in wt.projmgmt.execution with parameters of type WfContainer
static SummaryActivity SummaryActivity.newSummaryActivity(WfContainer container)
          SummaryActivity constructor.
protected  void SummaryActivity.initialize(WfContainer container)
          Supports initialization, following construction of an instance.
 ProjectNode StandardProjExecService.addProjectNode(WfContainer container, ProjectNode node, Vector predecessors, Vector link_types)
          Adds a node to a WfContainer (project plan or summary).
 QueryResult StandardProjExecService.getContainedNodes(WfContainer container)
          Returns all enabled project nodes contained in the workflow container passed as argument.
private  int StandardProjExecService.moveAfter(WfContainer container, ProjectNode node1, ProjectNode node2, List changed_nodes)
          Moves node1 to after node2.
private  int StandardProjExecService.moveBefore(WfContainer container, ProjectNode node1, ProjectNode node2, List changed_nodes)
          Moves node1 to before node2.
private  void StandardProjExecService.addToContainer(WfContainer container, ProjectNode node)
          Adds node to container.
protected  ProjectNode StandardProjExecService.setInstanceAttributes(ProjectNode node, WfContainer container, Vector predecessors, Vector link_types)
          Initializes attributes that depends on the plan to which the node is being added.
 ProjectNode ProjExecServiceFwd.addProjectNode(WfContainer container, ProjectNode node, Vector predecessors, Vector link_types)
          Adds a node to a WfContainer (project plan or summary).
 QueryResult ProjExecServiceFwd.getContainedNodes(WfContainer container)
          Returns all enabled project nodes contained in the workflow container passed as argument.
 ProjectNode ProjExecService.addProjectNode(WfContainer container, ProjectNode node, Vector predecessors, Vector link_types)
          Adds a node to a WfContainer (project plan or summary).
 QueryResult ProjExecService.getContainedNodes(WfContainer container)
          Returns all enabled project nodes contained in the workflow container passed as argument.
static ProjectProxy ProjectProxy.newProjectProxy(WfContainer container)
          ProjectProxy constructor.
protected  void ProjectProxy.initialize(WfContainer container)
           
static ProjectActivity ProjectActivity.newProjectActivity(WfContainer container)
          ProjectActivity constructor.
protected  void ProjectActivity.initialize(WfContainer container)
           
static Milestone Milestone.newMilestone(WfContainer container)
          Milestone constructor.
protected  void Milestone.initialize(WfContainer container)
           
 

Uses of WfContainer in wt.projmgmt.monitor
 

Methods in wt.projmgmt.monitor that return WfContainer
 WfContainer StandardProjMonitorService.rollUpTimeToStart(WfContainer container)
          Updates the time to start of a WfContainer based on its contained objects if its "start computed" flag is true.
static WfContainer SchedulerHelper.changeStart(WfContainer container, Timestamp start)
          Changes the time to start of the container passed as argument.
 WfContainer ProjMonitorServiceSvr.rollUpTimeToStart(WfContainer container)
          Updates the time to start of a WfContainer based on its contained objects if its "start computed" flag is true.
 

Methods in wt.projmgmt.monitor with parameters of type WfContainer
 WfContainer StandardProjMonitorService.rollUpTimeToStart(WfContainer container)
          Updates the time to start of a WfContainer based on its contained objects if its "start computed" flag is true.
private  Vector StandardProjMonitorService.getContainedLinkTemplates(WfContainer container)
           
private static long SchedulerHelper.getEarliestStartNode(WfContainer container)
           
private static QueryResult SchedulerHelper.getContainedNodeTimes(WfContainer container)
          Returns times of nodes contained in the object passed as argument.
static WfContainer SchedulerHelper.changeStart(WfContainer container, Timestamp start)
          Changes the time to start of the container passed as argument.
private static void SchedulerHelper.constructMaps(WfContainer container, HashMap pred_map, HashSet not_visited, HashMap all_nodes, HashMap containment_map, HashMap container_map, HashMap initial_starts)
          Returns the various maps to be used in the scheduling algorithm.
 WfContainer ProjMonitorServiceSvr.rollUpTimeToStart(WfContainer container)
          Updates the time to start of a WfContainer based on its contained objects if its "start computed" flag is true.
 

Uses of WfContainer in wt.projmgmt.msproject
 

Methods in wt.projmgmt.msproject that return WfContainer
static WfContainer Utils.getParent(ProjectNode child)
          Get the parent of the specified ProjectNode.
 WfContainer StandardMsProjectService.importProjectPlan(WfContainer c, InputSource source, ImportInfo info)
          Update the specified ProjectPlan or SummaryActivity using the XML specification supplied by the provided InputSource.
private  WfContainer StandardMsProjectService.lock(WfContainer parent)
          Lock the specified WfContainer and all of its children.
 WfContainer MsProjectServiceFwd.importProjectPlan(WfContainer c, InputSource source, ImportInfo info)
          Update the specified ProjectPlan or SummaryActivity using the XML specification supplied by the provided InputSource.
 WfContainer MsProjectService.importProjectPlan(WfContainer c, InputSource source, ImportInfo info)
          Update the specified ProjectPlan or SummaryActivity using the XML specification supplied by the provided InputSource.
 WfContainer Importer.updatePlan(WfContainer c, InputSource source, ImportInfo info)
          Update the specified ProjectPlan or SummaryActivity using the data supplied by the InputSource.
private static WfContainer Importer.deleteProjectNodes(WfContainer c)
          Delete all the project nodes in the specified plan or summary activity.
 

Methods in wt.projmgmt.msproject with parameters of type WfContainer
static Enumeration Utils.getProjectNodes(WfContainer c)
          Return the all children of the specified WfContainer sorted in the "canonical order".
static Enumeration Utils.getProjectResources(WfContainer c)
          Return all the wt.projmgmt.resources.ProjectResources that are used by activities in the specified WfContainer.
static Enumeration Utils.getResourceAssignments(WfContainer c)
          Return all the ResourceAssignmentLinks that are used by activities in the specified WfContainer.
private static void Utils.addToSet(WfContainer c, Set set, boolean getResources)
          A helper method used by Utils.getProjectResources(wt.workflow.engine.WfContainer) and Utils.getResourceAssignments(wt.workflow.engine.WfContainer).
static String Utils.getFilenameBase(WfContainer c, Locale locale, String defVal)
          Get a valid base for a filename based on the name of the specified WfContainer.
 WfContainer StandardMsProjectService.importProjectPlan(WfContainer c, InputSource source, ImportInfo info)
          Update the specified ProjectPlan or SummaryActivity using the XML specification supplied by the provided InputSource.
 void StandardMsProjectService.exportProjectPlan(WfContainer c, OutputStream ostream, ExportInfo info)
          Export the specified ProjectPlan of SummaryActivity as XML that conforms to the Microsoft Project XML Schema.
 void StandardMsProjectService.requestImportProjectPlan(WfContainer c, OutputStream ostream, ImportInfo info)
          Generate a request for the client to import the specified file into the specified ProjectPlan or SummaryActivity.
private  boolean StandardMsProjectService.hasImportPermission(WfContainer c)
          Return true if the current user has permission to import a project plan into the specified container.
private  WfContainer StandardMsProjectService.lock(WfContainer parent)
          Lock the specified WfContainer and all of its children.
 WfContainer MsProjectServiceFwd.importProjectPlan(WfContainer c, InputSource source, ImportInfo info)
          Update the specified ProjectPlan or SummaryActivity using the XML specification supplied by the provided InputSource.
 void MsProjectServiceFwd.exportProjectPlan(WfContainer c, OutputStream ostream, ExportInfo info)
          Export the specified ProjectPlan of SummaryActivity as XML that conforms to the Microsoft Project XML Schema.
 void MsProjectServiceFwd.requestImportProjectPlan(WfContainer c, OutputStream ostream, ImportInfo info)
          Generate a request for the client to import the specified file into the specified ProjectPlan or SummaryActivity.
 WfContainer MsProjectService.importProjectPlan(WfContainer c, InputSource source, ImportInfo info)
          Update the specified ProjectPlan or SummaryActivity using the XML specification supplied by the provided InputSource.
 void MsProjectService.exportProjectPlan(WfContainer c, OutputStream ostream, ExportInfo info)
          Export the specified ProjectPlan of SummaryActivity as XML that conforms to the Microsoft Project XML Schema.
 void MsProjectService.requestImportProjectPlan(WfContainer c, OutputStream ostream, ImportInfo info)
          Generate a request for the client to import the specified file into the specified ProjectPlan or SummaryActivity.
 void MPPXMLExporter.export(WfContainer c)
          Export the specified ProjectPlan or SummaryActivity in Microsoft Project XML format.
private  void MPPXMLExporter.exportTasks(WfContainer c)
           
private  void MPPXMLExporter.exportResources(WfContainer c)
           
private  void MPPXMLExporter.exportAssignments(WfContainer c)
           
 void ImportRequestExporter.export(WfContainer c)
          Generate a request to import the specified file into the specified ProjectPlan or SummaryActivity.
 WfContainer Importer.updatePlan(WfContainer c, InputSource source, ImportInfo info)
          Update the specified ProjectPlan or SummaryActivity using the data supplied by the InputSource.
private static WfContainer Importer.deleteProjectNodes(WfContainer c)
          Delete all the project nodes in the specified plan or summary activity.
abstract  void Exporter.export(WfContainer c)
          Export the specified ProjectPlan or SummaryActivity in XML format.
 

Uses of WfContainer in wt.projmgmt.msproject.mppobject
 

Methods in wt.projmgmt.msproject.mppobject that return WfContainer
 WfContainer MPPPlan.getContainer()
          Get the persistable WfContainer that this plan object corresponds to.
 

Methods in wt.projmgmt.msproject.mppobject with parameters of type WfContainer
 void MPPPlan.setContainer(WfContainer c)
          Set the persistable WfContainer that this plan object corresponds to.
private  ExecutionObject MPPPlan.fixRollup(WfContainer c, boolean nested)
          Adjusts the rollups of the plan MSP doesn't know about deliverables so this is called after importing to fix the rollups to coincide with project link.
 

Uses of WfContainer in wt.workflow.definer
 

Methods in wt.workflow.definer with parameters of type WfContainer
 WfNode WfURLRobotTemplate.createWfNode(WfContainer container)
          Creates a (persistent) node instance from the template.
 WfNode WfTimerTemplate.createWfNode(WfContainer container)
          Creates a timer robot from the current template associated with a given process.
 WfNode WfSynchRobotTemplate.createWfNode(WfContainer container)
          Creates a synchronization robot from the current template associated with a given process.
 WfNode WfProxyTemplate.createWfNode(WfContainer container)
          Creates a requester activity and a process instantiated from the target template given the containing process.
 WfNode WfProcessTemplate.createWfNode(WfContainer container)
          Creates a requester activity and a process instantiated from the template given the containing process.
 WfNode WfNodeTemplate.createWfNode(WfContainer container)
          Creates a (persistent) node instance from the template.
 WfNode WfInternalMethodTemplate.createWfNode(WfContainer container)
          Creates an internal method robot activity from the current template associated with a given process.
 WfNode WfExternalMethodTemplate.createWfNode(WfContainer container)
          Creates an external method robot activity from the current template associated with a given process.
 WfNode WfExprRobotTemplate.createWfNode(WfContainer container)
          Creates an expression robot from the current template associated with a given process.
 WfNode WfConnectorTemplate.createWfNode(WfContainer container)
          Creates a workflow connector using information stored in the template, associated with a given process.
 WfNode WfBlockTemplate.createWfNode(WfContainer container)
          Creates a requester activity and a block process instantiated from the template given the containing process.
 WfNode WfAssignedActivityTemplate.createWfNode(WfContainer container)
          Creates an assigned activity from the current template associated with a given process.
 WfNode WfApplRobotTemplate.createWfNode(WfContainer container)
          Creates an application robot from the current template associated with a given process.
 WfNode WfAdHocActivityTemplate.createWfNode(WfContainer container)
          Creates an ad hoc activity from the current template associated with a given process.
 WfLink NodeTemplateLink.createWfLink(WfContainer container, WfNode source, WfNode destination)
          Creates a workflow link using the information contained in the template.
 

Uses of WfContainer in wt.workflow.engine
 

Subclasses of WfContainer in wt.workflow.engine
 class WfBlock
          The WfBlock class supports the execution of blocks.
 class WfProcess
          A WfProcess is the performer of a workflow.
 

Methods in wt.workflow.engine that return WfContainer
 WfContainer WfRequesterActivity.getPerformer()
          Returns the process associated with the requester.
 WfContainer WfRequester.getPerformer()
          Returns the process associated with the requester.
 WfContainer WfProcessRequester.getPerformer()
          Returns the process associated with the requester.
 WfContainer WfEngineServiceFwd.createStartAdHocProcess(WfAdHocActivity requester, WfContainerTemplate template)
          Creates and starts an adh hoc process given the ad hoc activity and the template from which the process should be instantiated.
 WfContainer WfEngineService.createStartAdHocProcess(WfAdHocActivity requester, WfContainerTemplate template)
          Creates and starts an adh hoc process given the ad hoc activity and the template from which the process should be instantiated.
 WfContainer WfAdHocActivity.getPerformer()
          Returns the process associated with the requester.
 WfContainer StandardWfEngineService.createStartAdHocProcess(WfAdHocActivity requester, WfContainerTemplate template)
          Creates and starts an adh hoc process given the ad hoc activity and the template from which the process should be instantiated.
private  WfContainer StandardWfEngineService.saveProcess(WfContainer container)
          Saves process persistently.
private  WfContainer StandardWfEngineService.getContainer(WfNode node, WfNodeTemplate template)
          Returns container instance corresponding to destination container template.
 WfContainer WfRequesterActivity.getPerformer()
          Returns the process associated with the requester.
 WfContainer WfRequester.getPerformer()
          Returns the process associated with the requester.
 WfContainer WfProcessRequester.getPerformer()
          Returns the process associated with the requester.
 WfContainer WfEngineServiceFwd.createStartAdHocProcess(WfAdHocActivity requester, WfContainerTemplate template)
          Creates and starts an adh hoc process given the ad hoc activity and the template from which the process should be instantiated.
 WfContainer WfEngineService.createStartAdHocProcess(WfAdHocActivity requester, WfContainerTemplate template)
          Creates and starts an adh hoc process given the ad hoc activity and the template from which the process should be instantiated.
 WfContainer WfAdHocActivity.getPerformer()
          Returns the process associated with the requester.
 WfContainer StandardWfEngineService.createStartAdHocProcess(WfAdHocActivity requester, WfContainerTemplate template)
          Creates and starts an adh hoc process given the ad hoc activity and the template from which the process should be instantiated.
private  WfContainer StandardWfEngineService.saveProcess(WfContainer container)
          Saves process persistently.
private  WfContainer StandardWfEngineService.getContainer(WfNode node, WfNodeTemplate template)
          Returns container instance corresponding to destination container template.
 

Methods in wt.workflow.engine with parameters of type WfContainer
static WfRequesterActivity WfRequesterActivity.newWfRequesterActivity(WfContainer container)
          Constructs a requester activity given its owning process.
protected static void WfMonitor.showProcessHeader(WfContainer process, int level)
           
 Enumeration WfEngineServiceFwd.getProcessSteps(WfContainer container, WfState state)
          Returns all instantiated process steps in a given state.
 Enumeration WfEngineServiceFwd.getProcessConnectors(WfContainer container)
          Returns all connectors contained in a given process.
 String WfEngineServiceFwd.getProjectName(WfContainer container)
          Returns the name of the project associated with the given process.
 WfRequesterActivity WfEngineServiceFwd.createNestedProcess(WfProcessTemplate template, WfContainer container)
          Creates an activity requester and an associated process from the template.
 WfRequesterActivity WfEngineServiceFwd.createBlockProcess(WfBlockTemplate template, WfContainer container)
          Creates a block process and requester activity given the block template and containing process.
 String WfEngineServiceFwd.getTeamName(WfContainer container)
          Returns the name of the team associated with the given process.
 Enumeration WfEngineService.getProcessSteps(WfContainer container, WfState state)
          Returns all instantiated process steps in a given state.
 Enumeration WfEngineService.getProcessConnectors(WfContainer container)
          Returns all connectors contained in a given process.
 String WfEngineService.getProjectName(WfContainer container)
          Returns the name of the project associated with the given process.
 WfRequesterActivity WfEngineService.createNestedProcess(WfProcessTemplate template, WfContainer container)
          Creates an activity requester and an associated process from the template.
 WfRequesterActivity WfEngineService.createBlockProcess(WfBlockTemplate template, WfContainer container)
          Creates a block process and requester activity given the block template and containing process.
 String WfEngineService.getTeamName(WfContainer container)
          Returns the name of the team associated with the given process.
static WfContainerReference WfContainerReference.newWfContainerReference(WfContainer container)
          Constructs a workflow container reference given the container.
protected  void WfContainerReference.initialize(WfContainer container)
          Supports initialization, following construction of an instance.
protected  boolean WfContainer.readVersion(WfContainer thisObject, ObjectInput input, long readSerialVersionUID, boolean passThrough, boolean superDone)
          Reads the non-transient fields of this class from an external source.
static WfConnector WfConnector.newWfConnector(WfContainer container, WfConnectorFunction function, WfConnectorType type)
          Connector's constructor.
protected  void WfConnector.initialize(WfContainer container, WfConnectorFunction function, WfConnectorType type)
          Supports initialization, following construction of an instance.
static WfAdHocActivity WfAdHocActivity.newWfAdHocActivity(WfContainer container)
          Ad hoc activity constructor.
protected  void WfActivity.initialize(WfContainer container)
          

Supported API: false
 Enumeration StandardWfEngineService.getProcessSteps(WfContainer container, WfState state)
          Returns all instantiated process steps in a given state.
 Enumeration StandardWfEngineService.getProcessConnectors(WfContainer container)
          Returns all connectors contained in a given process.
 String StandardWfEngineService.getProjectName(WfContainer container)
          Returns the name of the project associated with the given process.
 WfRequesterActivity StandardWfEngineService.createNestedProcess(WfProcessTemplate template, WfContainer container)
          Creates an activity requester and an associated process from the template.
 WfRequesterActivity StandardWfEngineService.createBlockProcess(WfBlockTemplate template, WfContainer container)
          Creates a block process and requester activity given the block template and containing process.
 String StandardWfEngineService.getTeamName(WfContainer container)
          Returns the name of the team associated with the given process.
 QueryResult StandardWfEngineService.getContainerNodes(WfContainer container)
           
private  WfNode StandardWfEngineService.getSuccNode(WfContainer container, WfNodeTemplate template)
          Instantiates a surrogate for the successor of a node given the template link and the process.
private  WfContainer StandardWfEngineService.saveProcess(WfContainer container)
          Saves process persistently.
static WfRequesterActivity WfRequesterActivity.newWfRequesterActivity(WfContainer container)
          Constructs a requester activity given its owning process.
protected static void WfMonitor.showProcessHeader(WfContainer process, int level)
           
 Enumeration WfEngineServiceFwd.getProcessSteps(WfContainer container, WfState state)
          Returns all instantiated process steps in a given state.
 Enumeration WfEngineServiceFwd.getProcessConnectors(WfContainer container)
          Returns all connectors contained in a given process.
 String WfEngineServiceFwd.getProjectName(WfContainer container)
          Returns the name of the project associated with the given process.
 WfRequesterActivity WfEngineServiceFwd.createNestedProcess(WfProcessTemplate template, WfContainer container)
          Creates an activity requester and an associated process from the template.
 WfRequesterActivity WfEngineServiceFwd.createBlockProcess(WfBlockTemplate template, WfContainer container)
          Creates a block process and requester activity given the block template and containing process.
 String WfEngineServiceFwd.getTeamName(WfContainer container)
          Returns the name of the team associated with the given process.
 Enumeration WfEngineService.getProcessSteps(WfContainer container, WfState state)
          Returns all instantiated process steps in a given state.
 Enumeration WfEngineService.getProcessConnectors(WfContainer container)
          Returns all connectors contained in a given process.
 String WfEngineService.getProjectName(WfContainer container)
          Returns the name of the project associated with the given process.
 WfRequesterActivity WfEngineService.createNestedProcess(WfProcessTemplate template, WfContainer container)
          Creates an activity requester and an associated process from the template.
 WfRequesterActivity WfEngineService.createBlockProcess(WfBlockTemplate template, WfContainer container)
          Creates a block process and requester activity given the block template and containing process.
 String WfEngineService.getTeamName(WfContainer container)
          Returns the name of the team associated with the given process.
static WfContainerReference WfContainerReference.newWfContainerReference(WfContainer container)
          Constructs a workflow container reference given the container.
protected  void WfContainerReference.initialize(WfContainer container)
          Supports initialization, following construction of an instance.
protected  boolean WfContainer.readVersion(WfContainer thisObject, ObjectInput input, long readSerialVersionUID, boolean passThrough, boolean superDone)
          Reads the non-transient fields of this class from an external source.
static WfConnector WfConnector.newWfConnector(WfContainer container, WfConnectorFunction function, WfConnectorType type)
          Connector's constructor.
protected  void WfConnector.initialize(WfContainer container, WfConnectorFunction function, WfConnectorType type)
          Supports initialization, following construction of an instance.
static WfAdHocActivity WfAdHocActivity.newWfAdHocActivity(WfContainer container)
          Ad hoc activity constructor.
protected  void WfActivity.initialize(WfContainer container)
          

Supported API: false
 Enumeration StandardWfEngineService.getProcessSteps(WfContainer container, WfState state)
          Returns all instantiated process steps in a given state.
 Enumeration StandardWfEngineService.getProcessConnectors(WfContainer container)
          Returns all connectors contained in a given process.
 String StandardWfEngineService.getProjectName(WfContainer container)
          Returns the name of the project associated with the given process.
 WfRequesterActivity StandardWfEngineService.createNestedProcess(WfProcessTemplate template, WfContainer container)
          Creates an activity requester and an associated process from the template.
 WfRequesterActivity StandardWfEngineService.createBlockProcess(WfBlockTemplate template, WfContainer container)
          Creates a block process and requester activity given the block template and containing process.
 String StandardWfEngineService.getTeamName(WfContainer container)
          Returns the name of the team associated with the given process.
 QueryResult StandardWfEngineService.getContainerNodes(WfContainer container)
           
private  WfNode StandardWfEngineService.getSuccNode(WfContainer container, WfNodeTemplate template)
          Instantiates a surrogate for the successor of a node given the template link and the process.
private  WfContainer StandardWfEngineService.saveProcess(WfContainer container)
          Saves process persistently.
 

Uses of WfContainer in wt.workflow.robots
 

Methods in wt.workflow.robots with parameters of type WfContainer
static WfURLRobot WfURLRobot.newWfURLRobot(WfContainer container)
          Constructs an URL robot in a a given container.
static WfTimerActivity WfTimerActivity.newWfTimerActivity(WfContainer container)
          Constructs a timer robot in a given container (process or block).
static WfSynchRobot WfSynchRobot.newWfSynchRobot(WfContainer container)
          Constructs a synchronization robot in a given container (process or block).
protected  void WfSynchRobot.initialize(WfContainer container)
          Initializes the router type to conditional, as synch robots map external events into local ones.
static WfInternalMethod WfInternalMethod.newWfInternalMethod(WfContainer container)
          

Supported API: false
static WfExternalMethod WfExternalMethod.newWfExternalMethod(WfContainer container)
          

Supported API: false
static WfExpressionRobot WfExpressionRobot.newWfExpressionRobot(WfContainer container)
          Constructs expression robot in a a given container.
static WfApplicationRobot WfApplicationRobot.newWfApplicationRobot(WfContainer container)
          Constructs application robot in a a given container.
 

Uses of WfContainer in wt.workflow.work
 

Fields in wt.workflow.work declared as WfContainer
private  WfContainer ProcessManagerProcessor.myContainer
           
 

Methods in wt.workflow.work that return WfContainer
private  WfContainer ProcessManagerProcessor.getWfcontainer()
          Gets the process or block on which information will be displayed.
 

Methods in wt.workflow.work with parameters of type WfContainer
static WfAssignedActivity WfAssignedActivity.newWfAssignedActivity(WfContainer container)
          

Supported API: false
private  void ProcessManagerProcessor.setWfcontainer(WfContainer process)
          Sets the WfContainer (process or block).
private  WfNode ProcessManagerProcessor.getInstantiatedNode(WfContainer container, WfNodeTemplate template)
          This method returns the instantiated node (connector or activity) for a given template and container object (WfProcess or WfBlock).