1 17 18 package org.apache.sandesha.interop.testclient; 19 20 import java.io.Serializable ; 21 22 27 public class InteropBean implements Serializable { 28 29 private String target; 30 private String operation; 31 private String from; 32 private String replyto; 33 private int noOfMsgs; 34 35 private String acksTo; 36 private String offer; 37 private String faultto; 38 private String sourceURL; 39 40 public String getFaultto() { 41 return faultto; 42 } 43 44 public void setFaultto(String faultto) { 45 this.faultto = faultto; 46 } 47 48 49 public String getSourceURL() { 50 return sourceURL; 51 } 52 53 public void setSourceURL(String sourceURL) { 54 this.sourceURL = sourceURL; 55 } 56 57 58 public String getAcksTo() { 59 return acksTo; 60 } 61 62 public void setAcksTo(String acksTo) { 63 this.acksTo = acksTo; 64 } 65 66 67 public String getFrom() { 68 return from; 69 } 70 71 public int getNoOfMsgs() { 72 return noOfMsgs; 73 } 74 75 public String getOperation() { 76 return operation; 77 } 78 79 public String getReplyto() { 80 return replyto; 81 } 82 83 84 public String getTarget() { 85 return target; 86 } 87 88 89 92 public void setFrom(String string) { 93 from = string; 94 } 95 96 99 public void setNoOfMsgs(int i) { 100 noOfMsgs = i; 101 } 102 103 106 public void setOperation(String string) { 107 operation = string; 108 } 109 110 113 public void setReplyto(String string) { 114 replyto = string; 115 } 116 117 120 public void setTarget(String string) { 121 target = string; 122 } 123 124 public String getOffer() { 125 return offer; 126 } 127 128 public void setOffer(String offer) { 129 this.offer = offer; 130 } 131 132 133 } 134 | Popular Tags |