
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.RetrieveRequest 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.XmlType;
/**
* Java class for RetrieveRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RetrieveRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="apiVersion" type="{http://www.w3.org/2001/XMLSchema}double"/>
* <element name="packageNames" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="singlePackage" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="specificFiles" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
* <element name="unpackaged" type="{http://soap.sforce.com/2006/04/metadata}Package" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RetrieveRequest", propOrder = {
"apiVersion",
"packageNames",
"singlePackage",
"specificFiles",
"unpackaged"
})
public class RetrieveRequest {
protected double apiVersion;
protected List packageNames;
protected boolean singlePackage;
protected List specificFiles;
protected Package unpackaged;
/**
* Gets the value of the apiVersion property.
*
*/
public double getApiVersion() {
return apiVersion;
}
/**
* Sets the value of the apiVersion property.
*
*/
public void setApiVersion(double value) {
this.apiVersion = value;
}
/**
* Gets the value of the packageNames 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 packageNames property.
*
*
* For example, to add a new item, do as follows:
*
* getPackageNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getPackageNames() {
if (packageNames == null) {
packageNames = new ArrayList();
}
return this.packageNames;
}
/**
* Gets the value of the singlePackage property.
*
*/
public boolean isSinglePackage() {
return singlePackage;
}
/**
* Sets the value of the singlePackage property.
*
*/
public void setSinglePackage(boolean value) {
this.singlePackage = value;
}
/**
* Gets the value of the specificFiles 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 specificFiles property.
*
*
* For example, to add a new item, do as follows:
*
* getSpecificFiles().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getSpecificFiles() {
if (specificFiles == null) {
specificFiles = new ArrayList();
}
return this.specificFiles;
}
/**
* Gets the value of the unpackaged property.
*
* @return
* possible object is
* {@link Package }
*
*/
public Package getUnpackaged() {
return unpackaged;
}
/**
* Sets the value of the unpackaged property.
*
* @param value
* allowed object is
* {@link Package }
*
*/
public void setUnpackaged(Package value) {
this.unpackaged = value;
}
}