View Javadoc
1 package org.smartcomps.twister.engine.priv.core.definition.impl; 2 3 import org.smartcomps.twister.engine.priv.core.definition.Reply; 4 5 import java.util.Collection; 6 import java.util.HashSet; 7 8 /*** 9 * Persistent implementation of the Reply interface. 10 * @see org.smartcomps.twister.engine.priv.core.definition.Reply 11 */ 12 public class ReplyImpl extends BasicActivityImpl implements Reply { 13 14 private String partner; 15 private String portType; 16 private String operation; 17 private String variable; 18 private String faultName; 19 20 private Collection correlations = new HashSet(); 21 22 public String getPartner() { 23 return partner; 24 } 25 26 public void setPartner(String partner) { 27 this.partner = partner; 28 } 29 30 public String getPortType() { 31 return portType; 32 } 33 34 public void setPortType(String portType) { 35 this.portType = portType; 36 } 37 38 public String getOperation() { 39 return operation; 40 } 41 42 public void setOperation(String operation) { 43 this.operation = operation; 44 } 45 46 public String getVariable() { 47 return variable; 48 } 49 50 public void setVariable(String variable) { 51 this.variable = variable; 52 } 53 54 public String getFaultName() { 55 return faultName; 56 } 57 58 public void setFaultName(String faultName) { 59 this.faultName = faultName; 60 } 61 62 public Collection getCorrelations() { 63 return correlations; 64 } 65 66 public void setCorrelations(Collection correlations) { 67 this.correlations = correlations; 68 } 69 }

This page was automatically generated by Maven