http://jbpm.org/jpdl-4
element timer

Documentation
A timer that will be bound to the most inner enclosing scope.
    Timers can give a signal to an activity instance.  The signal will correspond to a transition 
    or to an event being fired.
    
An inline list of event listeners 
          on a timer is a short cut for defining the event separately.
          
Properties
This component is not nillable.

Model
<timer
  duedate = string
  repeat = string
  signal = string>
(notify | invoke | script | email | timer) *
</timer>


Nested Element Summary
tns:emailTypeemail
          Sends an email  
tns:invokeTypeinvoke
          Invokes a method on a Java object through reflection. 
 notify
          Calls the notify method on an EventListener.  
tns:scriptTypescript
          Evaluates a piece of text as a script  
 timer
          Creates a timer.  

Attribute Summary
 stringduedate
          
 stringrepeat
          
 stringsignal
          Refers to the signal that will be used. 

Attribute Detail

duedate

Type:
string
Use:
required
Form:
qualified

repeat

Type:
string
Use:
optional
Form:
qualified

signal

Refers to the signal that will be used. If inline event listeners are declared, the signal name can not be the same as an event that is declared in this scope.

Type:
string
Use:
required
Form:
qualified

Local Usage
activityGroup, eventListenerGroup, process-definition

Source
<element name="timer">
<complexType>
<choice maxOccurs="unbounded" minOccurs="0">
<group ref="tns:eventListenerGroup">
</group>
</choice>
<attribute name="duedate" type="string" use="required"/>
<attribute name="signal" type="string" use="required">
</attribute>
<attribute name="repeat" type="string"/>
</complexType>
</element>


Submit a bug or a feature.
Created by xsddoc, a sub project of xframe, hosted at http://xframe.sourceforge.net.