1 57 58 package org.apache.wsif; 59 60 import java.io.Serializable ; 61 62 import javax.xml.namespace.QName ; 63 64 73 public class WSIFRequest implements Serializable { 74 75 private static final long serialVersionUID = 1L; 76 77 QName serviceID; 78 String portName; 79 String operationName; 80 String inputName; 81 String outputName; 82 WSIFMessage incomingMessage; 83 WSIFMessage contextMessage; 84 85 88 public WSIFRequest(QName serviceID) { 89 this.serviceID = serviceID; 90 } 91 92 95 public QName getServiceID() { 96 return serviceID; 97 } 98 99 104 public void setPortName(String portName) { 105 this.portName = portName; 106 } 107 108 111 public String getPortName() { 112 return portName; 113 } 114 115 118 public void setOperationName(String operationName) { 119 this.operationName = operationName; 120 } 121 122 125 public String getOperationName() { 126 return operationName; 127 } 128 129 132 public void setIncomingMessage(WSIFMessage incomingMessage) { 133 this.incomingMessage = incomingMessage; 134 } 135 136 139 public WSIFMessage getIncomingMessage() { 140 return incomingMessage; 141 } 142 143 146 public void setContextMessage(WSIFMessage contextMessage) { 147 this.contextMessage = contextMessage; 148 } 149 150 153 public WSIFMessage getContextMessage() { 154 return contextMessage; 155 } 156 157 160 public String toString() { 161 return "[WSIFRequest:\n" 162 + "\t serviceID = '" 163 + serviceID 164 + "'\n" 165 + "\t operationName = '" 166 + operationName 167 + "'\n" 168 + "\t incomingMessage = '" 169 + incomingMessage 170 + "'\n" 171 + "\t contextMessage = '" 172 + contextMessage 173 + "']"; 174 } 175 179 public String getOutputName() { 180 return outputName; 181 } 182 186 public void setOutputName(String outputName) { 187 this.outputName = outputName; 188 } 189 190 194 public String getInputName() { 195 return inputName; 196 } 197 201 public void setInputName(String inputName) { 202 this.inputName = inputName; 203 } 204 205 } 206 | Popular Tags |