1 6 package org.jboss.test.webservice.jbws484; 7 8 9 public class TestMethodResponse { 10 protected int result; 11 12 public TestMethodResponse() { 13 } 14 15 public TestMethodResponse(int result) { 16 this.result = result; 17 } 18 19 public int getResult() { 20 return result; 21 } 22 23 public void setResult(int result) { 24 this.result = result; 25 } 26 } 27 | Popular Tags |