KickJava   Java API By Example, From Geeks To Geeks.

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


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 RenderStreamResponse {
10     protected byte[] result;
11     protected java.lang.String JavaDoc encoding;
12     protected java.lang.String JavaDoc mimeType;
13     
14     public RenderStreamResponse() {
15     }
16     
17     public RenderStreamResponse(byte[] result, java.lang.String JavaDoc encoding, java.lang.String JavaDoc mimeType) {
18         this.result = result;
19         this.encoding = encoding;
20         this.mimeType = mimeType;
21     }
22     
23     public byte[] getResult() {
24         return result;
25     }
26     
27     public void setResult(byte[] result) {
28         this.result = result;
29     }
30     
31     public java.lang.String JavaDoc getEncoding() {
32         return encoding;
33     }
34     
35     public void setEncoding(java.lang.String JavaDoc encoding) {
36         this.encoding = encoding;
37     }
38     
39     public java.lang.String JavaDoc getMimeType() {
40         return mimeType;
41     }
42     
43     public void setMimeType(java.lang.String JavaDoc mimeType) {
44         this.mimeType = mimeType;
45     }
46 }
47
Popular Tags