package org.oasis.wsrp.v2; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for getMarkup complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="getMarkup"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="registrationContext" type="{urn:oasis:names:tc:wsrp:v2:types}RegistrationContext"/> * <element name="portletContext" type="{urn:oasis:names:tc:wsrp:v2:types}PortletContext"/> * <element name="runtimeContext" type="{urn:oasis:names:tc:wsrp:v2:types}RuntimeContext"/> * <element name="userContext" type="{urn:oasis:names:tc:wsrp:v2:types}UserContext"/> * <element name="markupParams" type="{urn:oasis:names:tc:wsrp:v2:types}MarkupParams"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "getMarkup", propOrder = { "registrationContext", "portletContext", "runtimeContext", "userContext", "markupParams" }) public class GetMarkup { @XmlElement(required = true, nillable = true) protected RegistrationContext registrationContext; @XmlElement(required = true) protected PortletContext portletContext; @XmlElement(required = true) protected RuntimeContext runtimeContext; @XmlElement(required = true, nillable = true) protected UserContext userContext; @XmlElement(required = true) protected MarkupParams markupParams; /** * Gets the value of the registrationContext property. * * @return * possible object is * {@link RegistrationContext } * */ public RegistrationContext getRegistrationContext() { return registrationContext; } /** * Sets the value of the registrationContext property. * * @param value * allowed object is * {@link RegistrationContext } * */ public void setRegistrationContext(RegistrationContext value) { this.registrationContext = value; } /** * Gets the value of the portletContext property. * * @return * possible object is * {@link PortletContext } * */ public PortletContext getPortletContext() { return portletContext; } /** * Sets the value of the portletContext property. * * @param value * allowed object is * {@link PortletContext } * */ public void setPortletContext(PortletContext value) { this.portletContext = value; } /** * Gets the value of the runtimeContext property. * * @return * possible object is * {@link RuntimeContext } * */ public RuntimeContext getRuntimeContext() { return runtimeContext; } /** * Sets the value of the runtimeContext property. * * @param value * allowed object is * {@link RuntimeContext } * */ public void setRuntimeContext(RuntimeContext value) { this.runtimeContext = value; } /** * Gets the value of the userContext property. * * @return * possible object is * {@link UserContext } * */ public UserContext getUserContext() { return userContext; } /** * Sets the value of the userContext property. * * @param value * allowed object is * {@link UserContext } * */ public void setUserContext(UserContext value) { this.userContext = value; } /** * Gets the value of the markupParams property. * * @return * possible object is * {@link MarkupParams } * */ public MarkupParams getMarkupParams() { return markupParams; } /** * Sets the value of the markupParams property. * * @param value * allowed object is * {@link MarkupParams } * */ public void setMarkupParams(MarkupParams value) { this.markupParams = value; } }