[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/workflow - stateful.py:1.5

Ulrich Eck ueck@net-labs.de
Thu, 6 Feb 2003 16:54:14 -0500


Update of /cvs-repository/Zope3/src/zope/app/interfaces/workflow
In directory cvs.zope.org:/tmp/cvs-serv18875

Modified Files:
	stateful.py 
Log Message:
added permission-attribute to ITransition


=== Zope3/src/zope/app/interfaces/workflow/stateful.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/interfaces/workflow/stateful.py:1.4	Thu Feb  6 10:02:33 2003
+++ Zope3/src/zope/app/interfaces/workflow/stateful.py	Thu Feb  6 16:54:13 2003
@@ -26,9 +26,6 @@
     """Interface for state of a stateful workflow process definition.
     """
 
-    # more attributes/methods to come
-    # description = Attribute("Description of the State.")
-
 
 class IStatefulStatesContainer(IProcessDefinitionElementContainer):
     """Container that stores States.
@@ -46,9 +43,8 @@
 
     condition = Attribute("""The condition that is evaluated to decide if \
                              the condition is fired or not.""")
-    # more attributes/methods to come
-    # permission = Attribute("Permission for this Transition.")
-    # description = Attribute("Description for this Transition.")
+
+    permission = Attribute("Permission for this Transition.")
 
 
 class IStatefulTransitionsContainer(IProcessDefinitionElementContainer):