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 GetMarkup implements Serializable {
11: /** The serialVersionUID */
12: private static final long serialVersionUID = -5698998107394904886L;
13: protected RegistrationContext registrationContext;
14: protected PortletContext portletContext;
15: protected RuntimeContext runtimeContext;
16: protected UserContext userContext;
17: protected MarkupParams markupParams;
18:
19: public GetMarkup() {
20: }
21:
22: public GetMarkup(RegistrationContext registrationContext,
23: PortletContext portletContext,
24: RuntimeContext runtimeContext, UserContext userContext,
25: MarkupParams markupParams) {
26: this .registrationContext = registrationContext;
27: this .portletContext = portletContext;
28: this .runtimeContext = runtimeContext;
29: this .userContext = userContext;
30: this .markupParams = markupParams;
31: }
32:
33: public RegistrationContext getRegistrationContext() {
34: return registrationContext;
35: }
36:
37: public void setRegistrationContext(
38: RegistrationContext registrationContext) {
39: this .registrationContext = registrationContext;
40: }
41:
42: public PortletContext getPortletContext() {
43: return portletContext;
44: }
45:
46: public void setPortletContext(PortletContext portletContext) {
47: this .portletContext = portletContext;
48: }
49:
50: public RuntimeContext getRuntimeContext() {
51: return runtimeContext;
52: }
53:
54: public void setRuntimeContext(RuntimeContext runtimeContext) {
55: this .runtimeContext = runtimeContext;
56: }
57:
58: public UserContext getUserContext() {
59: return userContext;
60: }
61:
62: public void setUserContext(UserContext userContext) {
63: this .userContext = userContext;
64: }
65:
66: public MarkupParams getMarkupParams() {
67: return markupParams;
68: }
69:
70: public void setMarkupParams(MarkupParams markupParams) {
71: this.markupParams = markupParams;
72: }
73: }
|