package com.rapid_i.repository.wsimport; import java.util.ArrayList; import java.util.List; 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 folderContentsResponse complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="folderContentsResponse"> * <complexContent> * <extension base="{http://service.web.rapidanalytics.de/}response"> * <sequence> * <element name="entries" type="{http://service.web.rapidanalytics.de/}entryResponse" maxOccurs="unbounded" minOccurs="0"/> * <element name="location" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "folderContentsResponse", propOrder = { "entries", "location" }) public class FolderContentsResponse extends Response { @XmlElement(nillable = true) protected List<EntryResponse> entries; protected String location; /** * Gets the value of the entries property. * * <p> * 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 JAXB object. * This is why there is not a <CODE>set</CODE> method for the entries property. * * <p> * For example, to add a new item, do as follows: * <pre> * getEntries().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link EntryResponse } * * */ public List<EntryResponse> getEntries() { if (entries == null) { entries = new ArrayList<EntryResponse>(); } return this.entries; } /** * Gets the value of the location property. * * @return * possible object is * {@link String } * */ public String getLocation() { return location; } /** * Sets the value of the location property. * * @param value * allowed object is * {@link String } * */ public void setLocation(String value) { this.location = value; } }