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