1 package org.smartcomps.twister.engine.priv.core.definition;
2
3 import org.smartcomps.twister.engine.priv.core.definition.BasicActivity;
4
5 import java.util.Collection;
6
7 /***
8 * The Reply activity allows the business process to send a message in
9 * reply to a message that was received through a Receive. The combination
10 * of a receive and a reply forms a request-response operation on the WSDL
11 * portType for the process.
12 */
13 public interface Reply extends BasicActivity {
14
15 public String getPartner();
16 public void setPartner(String partner);
17
18 public String getPortType();
19 public void setPortType(String portType);
20
21 public String getOperation();
22 public void setOperation(String operation);
23
24 public String getVariable();
25 public void setVariable(String variable);
26
27 public String getFaultName();
28 public void setFaultName(String faultName);
29
30 public Collection getCorrelations();
31 public void setCorrelations(Collection correlations);
32
33 }
This page was automatically generated by Maven