1 package test.wsdl.roundtrip2; 2 3 import java.math.BigDecimal ; 4 import java.math.BigInteger ; 5 import java.rmi.RemoteException ; 6 import java.util.Calendar ; 7 8 public class RoundTrip2SoapBindingImpl implements test.wsdl.roundtrip2.RoundTrip2Test { 9 16 public boolean booleanTest(boolean v) throws RemoteException { 17 return v; 18 } 19 20 27 public Boolean wrapperBooleanTest(Boolean v) throws RemoteException { 28 return v; 29 } 30 31 38 public byte byteTest(byte v) throws RemoteException { 39 return v; 40 } 41 42 49 public Byte wrapperByteTest(Byte v) throws RemoteException { 50 return v; 51 } 52 53 60 public short shortTest(short v) throws RemoteException { 61 return v; 62 } 63 64 71 public Short wrapperShortTest(Short v) throws RemoteException { 72 return v; 73 } 74 75 82 public int intTest(int v) throws RemoteException { 83 return v; 84 } 85 86 93 public Integer wrapperIntegerTest(Integer v) throws RemoteException { 94 return v; 95 } 96 97 104 public long longTest(long v) throws RemoteException { 105 return v; 106 } 107 108 115 public Long wrapperLongTest(Long v) throws RemoteException { 116 return v; 117 } 118 119 126 public float floatTest(float v) throws RemoteException { 127 return v; 128 } 129 130 137 public Float wrapperFloatTest(Float v) throws RemoteException { 138 return v; 139 } 140 141 148 public double doubleTest(double v) throws RemoteException { 149 return v; 150 } 151 152 159 public Double wrapperDoubleTest(Double v) throws RemoteException { 160 return v; 161 } 162 163 170 public boolean[] booleanArrayTest(boolean v[]) throws RemoteException { 171 return v; 172 } 173 174 181 public byte[] byteArrayTest(byte v[]) throws RemoteException { 182 return v; 183 } 184 185 192 public short[] shortArrayTest(short v[]) throws RemoteException { 193 return v; 194 } 195 196 203 public int[] intArrayTest(int v[]) throws RemoteException { 204 return v; 205 } 206 207 214 public long[] longArrayTest(long v[]) throws RemoteException { 215 return v; 216 } 217 218 225 public float[] floatArrayTest(float v[]) throws RemoteException { 226 return v; 227 } 228 229 236 public double[] doubleArrayTest(double v[]) throws RemoteException { 237 return v; 238 } 239 240 247 public Boolean [] wrapperBooleanArrayTest(Boolean v[]) 248 throws RemoteException { 249 return v; 250 } 251 252 259 public Byte [] wrapperByteArrayTest(Byte v[]) throws RemoteException { 260 return v; 261 } 262 263 270 public Short [] wrapperShortArrayTest(Short v[]) throws RemoteException { 271 return v; 272 } 273 274 281 public Integer [] wrapperIntArrayTest(Integer v[]) throws RemoteException { 282 return v; 283 } 284 285 292 public Long [] wrapperLongArrayTest(Long v[]) throws RemoteException { 293 return v; 294 } 295 296 303 public Float [] wrapperFloatArrayTest(Float v[]) throws RemoteException { 304 return v; 305 } 306 307 314 public Double [] wrapperDoubleArrayTest(Double v[]) throws RemoteException { 315 return v; 316 } 317 318 325 public boolean[][] booleanMultiArrayTest(boolean v[][]) 326 throws RemoteException { 327 return v; 328 } 329 330 337 public byte[][] byteMultiArrayTest(byte v[][]) throws RemoteException { 338 return v; 339 } 340 341 348 public short[][] shortMultiArrayTest(short v[][]) throws RemoteException { 349 return v; 350 } 351 352 359 public int[][] intMultiArrayTest(int v[][]) throws RemoteException { 360 return v; 361 } 362 363 370 public long[][] longMultiArrayTest(long v[][]) throws RemoteException { 371 return v; 372 } 373 374 381 public float[][] floatMultiArrayTest(float v[][]) throws RemoteException { 382 return v; 383 } 384 385 392 public double[][] doubleMultiArrayTest(double v[][]) 393 throws RemoteException { 394 return v; 395 } 396 397 404 public String stringTest(String v) throws RemoteException { 405 return v; 406 } 407 408 415 public String [] stringArrayTest(String v[]) throws RemoteException { 416 return v; 417 } 418 419 426 public String [][] stringMultiArrayTest(String v[][]) 427 throws RemoteException { 428 return v; 429 } 430 431 438 public Calendar calendarTest(Calendar v) throws RemoteException { 439 return v; 440 } 441 442 449 public Calendar [] calendarArrayTest(Calendar v[]) throws RemoteException { 450 return v; 451 } 452 453 460 public Calendar [][] calendarMultiArrayTest(Calendar v[][]) 461 throws RemoteException { 462 return v; 463 } 464 465 472 public BigInteger bigIntegerTest(BigInteger v) throws RemoteException { 473 return v; 474 } 475 476 483 public BigInteger [] bigIntegerArrayTest(BigInteger v[]) 484 throws RemoteException { 485 return v; 486 } 487 488 495 public BigInteger [][] bigIntegerMultiArrayTest(BigInteger v[][]) 496 throws RemoteException { 497 return v; 498 } 499 500 507 public BigDecimal bigDecimalTest(BigDecimal v) throws RemoteException { 508 return v; 509 } 510 511 518 public BigDecimal [] bigDecimalArrayTest(BigDecimal v[]) 519 throws RemoteException { 520 return v; 521 } 522 523 530 public BigDecimal [][] bigDecimalMultiArrayTest(BigDecimal v[][]) 531 throws RemoteException { 532 return v; 533 } 534 } 535 | Popular Tags |