01: // This class was generated by the JAXRPC SI, do not edit.
02: // Contents subject to change without notice.
03: // JAX-RPC Standard Implementation (1.1.3, build R1)
04: // Generated source version: 1.1.3
05:
06: package org.jboss.test.wsrp.core;
07:
08: import java.io.Serializable;
09:
10: public class UploadContext implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = 3248758252239905413L;
13: protected java.lang.String mimeType;
14: protected byte[] uploadData;
15: protected NamedString[] mimeAttributes;
16: protected Extension[] extensions;
17:
18: public UploadContext() {
19: }
20:
21: public UploadContext(java.lang.String mimeType, byte[] uploadData,
22: NamedString[] mimeAttributes, Extension[] extensions) {
23: this .mimeType = mimeType;
24: this .uploadData = uploadData;
25: this .mimeAttributes = mimeAttributes;
26: this .extensions = extensions;
27: }
28:
29: public java.lang.String getMimeType() {
30: return mimeType;
31: }
32:
33: public void setMimeType(java.lang.String mimeType) {
34: this .mimeType = mimeType;
35: }
36:
37: public byte[] getUploadData() {
38: return uploadData;
39: }
40:
41: public void setUploadData(byte[] uploadData) {
42: this .uploadData = uploadData;
43: }
44:
45: public NamedString[] getMimeAttributes() {
46: return mimeAttributes;
47: }
48:
49: public void setMimeAttributes(NamedString[] mimeAttributes) {
50: this .mimeAttributes = mimeAttributes;
51: }
52:
53: public Extension[] getExtensions() {
54: return extensions;
55: }
56:
57: public void setExtensions(Extension[] extensions) {
58: this.extensions = extensions;
59: }
60: }
|