
com.palominolabs.crm.sf.soap.jaxwsstub.metadata.DescribeMetadataResult 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 DescribeMetadataResult complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DescribeMetadataResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="metadataObjects" type="{http://soap.sforce.com/2006/04/metadata}DescribeMetadataObject" maxOccurs="unbounded" minOccurs="0"/>
* <element name="organizationNamespace" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="partialSaveAllowed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="testRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DescribeMetadataResult", propOrder = {
"metadataObjects",
"organizationNamespace",
"partialSaveAllowed",
"testRequired"
})
public class DescribeMetadataResult {
protected List metadataObjects;
@XmlElement(required = true)
protected String organizationNamespace;
protected boolean partialSaveAllowed;
protected boolean testRequired;
/**
* Gets the value of the metadataObjects 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 metadataObjects property.
*
*
* For example, to add a new item, do as follows:
*
* getMetadataObjects().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DescribeMetadataObject }
*
*
*/
public List getMetadataObjects() {
if (metadataObjects == null) {
metadataObjects = new ArrayList();
}
return this.metadataObjects;
}
/**
* Gets the value of the organizationNamespace property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getOrganizationNamespace() {
return organizationNamespace;
}
/**
* Sets the value of the organizationNamespace property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOrganizationNamespace(String value) {
this.organizationNamespace = value;
}
/**
* Gets the value of the partialSaveAllowed property.
*
*/
public boolean isPartialSaveAllowed() {
return partialSaveAllowed;
}
/**
* Sets the value of the partialSaveAllowed property.
*
*/
public void setPartialSaveAllowed(boolean value) {
this.partialSaveAllowed = value;
}
/**
* Gets the value of the testRequired property.
*
*/
public boolean isTestRequired() {
return testRequired;
}
/**
* Sets the value of the testRequired property.
*
*/
public void setTestRequired(boolean value) {
this.testRequired = value;
}
}