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 UpdateResponse implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = -3007501145027671717L;
13: protected SessionContext sessionContext;
14: protected PortletContext portletContext;
15: protected MarkupContext markupContext;
16: protected java.lang.String navigationalState;
17: protected java.lang.String newWindowState;
18: protected java.lang.String newMode;
19:
20: public UpdateResponse() {
21: }
22:
23: public UpdateResponse(SessionContext sessionContext,
24: PortletContext portletContext, MarkupContext markupContext,
25: java.lang.String navigationalState,
26: java.lang.String newWindowState, java.lang.String newMode) {
27: this .sessionContext = sessionContext;
28: this .portletContext = portletContext;
29: this .markupContext = markupContext;
30: this .navigationalState = navigationalState;
31: this .newWindowState = newWindowState;
32: this .newMode = newMode;
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 PortletContext getPortletContext() {
44: return portletContext;
45: }
46:
47: public void setPortletContext(PortletContext portletContext) {
48: this .portletContext = portletContext;
49: }
50:
51: public MarkupContext getMarkupContext() {
52: return markupContext;
53: }
54:
55: public void setMarkupContext(MarkupContext markupContext) {
56: this .markupContext = markupContext;
57: }
58:
59: public java.lang.String getNavigationalState() {
60: return navigationalState;
61: }
62:
63: public void setNavigationalState(java.lang.String navigationalState) {
64: this .navigationalState = navigationalState;
65: }
66:
67: public java.lang.String getNewWindowState() {
68: return newWindowState;
69: }
70:
71: public void setNewWindowState(java.lang.String newWindowState) {
72: this .newWindowState = newWindowState;
73: }
74:
75: public java.lang.String getNewMode() {
76: return newMode;
77: }
78:
79: public void setNewMode(java.lang.String newMode) {
80: this.newMode = newMode;
81: }
82: }
|