View Javadoc
1 package org.smartcomps.twister.engine.priv.core.definition; 2 3 /*** 4 * Variables provide the means for holding messages data that constitute the 5 * state of a business process. 6 */ 7 public interface Variable { 8 9 public String getName(); 10 public void setName(String name); 11 12 public String getMessageType(); 13 public void setMessageType(String messageType); 14 }

This page was automatically generated by Maven