com.palominolabs.crm.sf.soap.jaxwsstub.apex.WsdlToApex Maven / Gradle / Ivy
package com.palominolabs.crm.sf.soap.jaxwsstub.apex;
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="info" type="{http://soap.sforce.com/2006/08/apex}WsdlToApexInfo"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"info"
})
@XmlRootElement(name = "wsdlToApex")
public class WsdlToApex {
@XmlElement(required = true)
protected WsdlToApexInfo info;
/**
* Gets the value of the info property.
*
* @return
* possible object is
* {@link WsdlToApexInfo }
*
*/
public WsdlToApexInfo getInfo() {
return info;
}
/**
* Sets the value of the info property.
*
* @param value
* allowed object is
* {@link WsdlToApexInfo }
*
*/
public void setInfo(WsdlToApexInfo value) {
this.info = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy