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 MarkupResponse implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = -3715184733896042795L;
13: protected MarkupContext markupContext;
14: protected SessionContext sessionContext;
15: protected Extension[] extensions;
16:
17: public MarkupResponse() {
18: }
19:
20: public MarkupResponse(MarkupContext markupContext,
21: SessionContext sessionContext, Extension[] extensions) {
22: this .markupContext = markupContext;
23: this .sessionContext = sessionContext;
24: this .extensions = extensions;
25: }
26:
27: public MarkupContext getMarkupContext() {
28: return markupContext;
29: }
30:
31: public void setMarkupContext(MarkupContext markupContext) {
32: this .markupContext = markupContext;
33: }
34:
35: public SessionContext getSessionContext() {
36: return sessionContext;
37: }
38:
39: public void setSessionContext(SessionContext sessionContext) {
40: this .sessionContext = sessionContext;
41: }
42:
43: public Extension[] getExtensions() {
44: return extensions;
45: }
46:
47: public void setExtensions(Extension[] extensions) {
48: this.extensions = extensions;
49: }
50: }
|