com.sugarcrm.ws.soap.EntryList2 Maven / Gradle / Ivy
package com.sugarcrm.ws.soap;
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 entry_list2 complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="entry_list2">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="entry_list" type="{http://www.sugarcrm.com/sugarcrm}entry_list"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "entry_list2", propOrder = {
})
public class EntryList2 {
@XmlElement(name = "entry_list", required = true)
protected EntryList entryList;
/**
* Gets the value of the entryList property.
*
* @return
* possible object is
* {@link EntryList }
*
*/
public EntryList getEntryList() {
return entryList;
}
/**
* Sets the value of the entryList property.
*
* @param value
* allowed object is
* {@link EntryList }
*
*/
public void setEntryList(EntryList value) {
this.entryList = value;
}
}