![JAR search and dependency download from the Maven repository](/logo.png)
com.sforce.soap.partner.RetrieveQuickActionTemplates Maven / Gradle / Ivy
package com.sforce.soap.partner;
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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="quickActionNames" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="contextId" type="{urn:partner.soap.sforce.com}ID"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"quickActionNames",
"contextId"
})
@XmlRootElement(name = "retrieveQuickActionTemplates")
public class RetrieveQuickActionTemplates {
protected List quickActionNames;
@XmlElement(required = true, nillable = true)
protected String contextId;
/**
* Gets the value of the quickActionNames 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 quickActionNames property.
*
*
* For example, to add a new item, do as follows:
*
* getQuickActionNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getQuickActionNames() {
if (quickActionNames == null) {
quickActionNames = new ArrayList();
}
return this.quickActionNames;
}
/**
* Gets the value of the contextId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContextId() {
return contextId;
}
/**
* Sets the value of the contextId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContextId(String value) {
this.contextId = value;
}
}