Changeset 1987 for trunk/autoquest-plugin-http/src
- Timestamp:
- 07/06/15 12:08:37 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SimpleSOAPEventType.java
r1986 r1987 40 40 /** */ 41 41 private static final long serialVersionUID = 1L; 42 42 43 43 /** 44 44 * see {@link RequestBodyMode} … … 137 137 /** 138 138 * <p> 139 * returns the body of the SOAP request; how the body is determined is defined by the {@link RequestBodyMode}. 140 * </p> 141 * 139 * returns the body of the SOAP request; how the body is determined is defined by the 140 * {@link RequestBodyMode}. 141 * </p> 142 * 142 143 * @return body of the SOAP request 143 144 */ … … 155 156 throw new RuntimeException("undefined RequestBodyMode"); 156 157 } 157 if ( requestBody==null) {158 if (requestBody == null) { 158 159 System.err.println("foobar" + this); 159 160 System.err.println(EqualSOAPDataMap.getInstance().getAll(this)); … … 167 168 } 168 169 } 169 170 171 170 172 171 /* … … 220 219 return "SimpleSOAPEventType(" + serviceName + ", " + calledMethod + ")"; 221 220 } 222 221 223 222 /** 224 223 * <p> 225 224 * returns the current {@link RequestBodyMode} 226 225 * </p> 227 * 226 * 228 227 * @return the requestBodyMode 229 228 */ … … 231 230 return requestBodyMode; 232 231 } 233 232 234 233 /** 235 234 * <p> 236 235 * sets the {@link RequestBodyMode} 237 236 * </p> 238 * 237 * 239 238 * @param new requestBodyMode 240 239 */ … … 242 241 SimpleSOAPEventType.requestBodyMode = requestBodyMode; 243 242 } 244 243 245 244 /** 246 245 * <p> … … 248 247 * <ul> 249 248 * <li>LOCALEVENT: returns the request body of the event type itself</li> 250 * <li>RANDOM: returns a randomly draw request body for the called method using {@link EqualSOAPDataMap#getRandom(SimpleSOAPEventType)}. 251 * </ul> 249 * <li>RANDOM: returns a randomly draw request body for the called method using 250 * {@link EqualSOAPDataMap#getRandom(SimpleSOAPEventType)}. 251 * </ul> 252 252 * </p> 253 253 * 254 254 * @author Steffen Herbold 255 255 */ 256 public static enum RequestBodyMode {LOCALEVENT, RANDOM} 256 public static enum RequestBodyMode { 257 LOCALEVENT, RANDOM 258 } 257 259 }
Note: See TracChangeset
for help on using the changeset viewer.