KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jbpm > bpel > def > Validate


1 package org.jbpm.bpel.def;
2
3 /**
4  * This activity validates the values of variables against their
5  * associated XML and WSDL data definition.
6  * @author Juan Cantú
7  * @version $Revision: 1.1 $ $Date: 2005/06/03 00:13:42 $
8  */

9 public class Validate extends Activity {
10
11   private static final long serialVersionUID = 1L;
12
13   /**{@inheritDoc}*/
14   public void accept(BpelVisitor visitor) {
15     visitor.visit(this);
16   }
17 }
18
Popular Tags