com.palominolabs.crm.sf.soap.jaxwsstub.apex.WsdlToApexInfo Maven / Gradle / Ivy
package com.palominolabs.crm.sf.soap.jaxwsstub.apex;
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 WsdlToApexInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="WsdlToApexInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="mapping" type="{http://soap.sforce.com/2006/08/apex}NamespacePackagePair" maxOccurs="unbounded" minOccurs="0"/>
* <element name="wsdl" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "WsdlToApexInfo", propOrder = {
"mapping",
"wsdl"
})
public class WsdlToApexInfo {
protected List mapping;
@XmlElement(required = true)
protected String wsdl;
/**
* Gets the value of the mapping 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 mapping property.
*
*
* For example, to add a new item, do as follows:
*
* getMapping().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NamespacePackagePair }
*
*
*/
public List getMapping() {
if (mapping == null) {
mapping = new ArrayList();
}
return this.mapping;
}
/**
* Gets the value of the wsdl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getWsdl() {
return wsdl;
}
/**
* Sets the value of the wsdl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setWsdl(String value) {
this.wsdl = value;
}
}