
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.HomePageComponent Maven / Gradle / Ivy
package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for HomePageComponent complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="HomePageComponent">
* <complexContent>
* <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
* <sequence>
* <element name="body" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="links" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="pageComponentType" type="{http://soap.sforce.com/2006/04/metadata}PageComponentType"/>
* <element name="width" type="{http://soap.sforce.com/2006/04/metadata}PageComponentWidth" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "HomePageComponent", propOrder = {
"body",
"links",
"pageComponentType",
"width"
})
public class HomePageComponent
extends Metadata
{
protected String body;
protected List links;
@XmlElement(required = true)
protected PageComponentType pageComponentType;
protected PageComponentWidth width;
/**
* Gets the value of the body property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBody() {
return body;
}
/**
* Sets the value of the body property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBody(String value) {
this.body = value;
}
/**
* Gets the value of the links property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the links property.
*
*
* For example, to add a new item, do as follows:
*
* getLinks().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getLinks() {
if (links == null) {
links = new ArrayList();
}
return this.links;
}
/**
* Gets the value of the pageComponentType property.
*
* @return
* possible object is
* {@link PageComponentType }
*
*/
public PageComponentType getPageComponentType() {
return pageComponentType;
}
/**
* Sets the value of the pageComponentType property.
*
* @param value
* allowed object is
* {@link PageComponentType }
*
*/
public void setPageComponentType(PageComponentType value) {
this.pageComponentType = value;
}
/**
* Gets the value of the width property.
*
* @return
* possible object is
* {@link PageComponentWidth }
*
*/
public PageComponentWidth getWidth() {
return width;
}
/**
* Sets the value of the width property.
*
* @param value
* allowed object is
* {@link PageComponentWidth }
*
*/
public void setWidth(PageComponentWidth value) {
this.width = value;
}
}