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