[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Workflow - WorkflowService.py:1.2.24.3

Ulrich Eck ueck@net-labs.de
Wed, 4 Dec 2002 05:42:24 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Workflow
In directory cvs.zope.org:/tmp/cvs-serv21140

Modified Files:
      Tag: sprintathon-wf-branch
	WorkflowService.py 
Log Message:
forgot saving ...


=== Zope3/lib/python/Zope/App/Workflow/WorkflowService.py 1.2.24.2 => 1.2.24.3 ===
--- Zope3/lib/python/Zope/App/Workflow/WorkflowService.py:1.2.24.2	Wed Dec  4 05:39:39 2002
+++ Zope3/lib/python/Zope/App/Workflow/WorkflowService.py	Wed Dec  4 05:42:24 2002
@@ -37,11 +37,11 @@
     # Implementation methods for interface
     # Zope.App.Workflow.IWorkflowService
 
-    def getDefinitionNames(self):
+    def getProcessDefinitionNames(self):
         return self.__definitions.keys()
 
-    def getDefinition(self, name):
-        definition = self.getBoundDefinition(name)
+    def getProcessDefinition(self, name):
+        definition = self.getBoundProcessDefinition(name)
         if definition is not None:
             return definition
         service = getService(self, IWorkflowService)
@@ -65,7 +65,7 @@
     #
     ############################################################
 
-    def getBoundDefinition(self, name):
+    def getBoundProcessDefinition(self, name):
         registry = self.queryConfigurations(name)
         if registry is None:
             return None