1 6 package org.jboss.test.webservice.jbws718; 7 8 9 public class GetReportDefinitionResponse { 10 protected byte[] definition; 11 12 public GetReportDefinitionResponse() { 13 } 14 15 public GetReportDefinitionResponse(byte[] definition) { 16 this.definition = definition; 17 } 18 19 public byte[] getDefinition() { 20 return definition; 21 } 22 23 public void setDefinition(byte[] definition) { 24 this.definition = definition; 25 } 26 } 27 | Popular Tags |