KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws718 > GetReportDefinitionResponse


1 // This class was generated by the JAXRPC SI, do not edit.
2
// Contents subject to change without notice.
3
// JAX-RPC Standard Implementation (1.1.3, build R1)
4
// Generated source version: 1.1.3
5

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