
tsg.ns.wsdl.coop.SolutionTopicsList Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for SolutionTopicsList complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SolutionTopicsList">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="topics" type="{urn:support_2023_1.lists.webservices.netsuite.com}SolutionTopics" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="replaceAll" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SolutionTopicsList", namespace = "urn:support_2023_1.lists.webservices.netsuite.com", propOrder = {
"topics"
})
public class SolutionTopicsList {
protected List topics;
@XmlAttribute(name = "replaceAll")
protected Boolean replaceAll;
/**
* Gets the value of the topics 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 Jakarta XML Binding object.
* This is why there is not a set
method for the topics property.
*
*
* For example, to add a new item, do as follows:
*
* getTopics().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SolutionTopics }
*
*
*/
public List getTopics() {
if (topics == null) {
topics = new ArrayList();
}
return this.topics;
}
/**
* Gets the value of the replaceAll property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public boolean isReplaceAll() {
if (replaceAll == null) {
return true;
} else {
return replaceAll;
}
}
/**
* Sets the value of the replaceAll property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setReplaceAll(Boolean value) {
this.replaceAll = value;
}
}