package com.thesecretserver.service; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for SearchFolderResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="SearchFolderResult"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Errors" type="{urn:thesecretserver.com}ArrayOfString" minOccurs="0"/> * <element name="Folders" type="{urn:thesecretserver.com}ArrayOfFolder" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SearchFolderResult", propOrder = { "errors", "folders" }) public class SearchFolderResult { @XmlElement(name = "Errors") protected ArrayOfString errors; @XmlElement(name = "Folders") protected ArrayOfFolder folders; /** * Gets the value of the errors property. * * @return * possible object is * {@link ArrayOfString } * */ public ArrayOfString getErrors() { return errors; } /** * Sets the value of the errors property. * * @param value * allowed object is * {@link ArrayOfString } * */ public void setErrors(ArrayOfString value) { this.errors = value; } /** * Gets the value of the folders property. * * @return * possible object is * {@link ArrayOfFolder } * */ public ArrayOfFolder getFolders() { return folders; } /** * Sets the value of the folders property. * * @param value * allowed object is * {@link ArrayOfFolder } * */ public void setFolders(ArrayOfFolder value) { this.folders = value; } }