/* Copyright (C) DocuSign, Inc. All rights reserved. This source code is intended only as a supplement to DocuSign SDK and/or on-line documentation. This sample is designed to demonstrate DocuSign features and is not intended for production use. Code and policy for a production application must be developed to meet the specific data and security requirements of the application. THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. */ package net.docusign.ws3_0.api; 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 ArrayOfDocumentPDF complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ArrayOfDocumentPDF"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="DocumentPDF" type="{http://www.docusign.net/API/3.0}DocumentPDF" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArrayOfDocumentPDF", propOrder = { "documentPDF" }) public class ArrayOfDocumentPDF { @XmlElement(name = "DocumentPDF") protected List<DocumentPDF> documentPDF; /** * Gets the value of the documentPDF 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 documentPDF property. * * <p> * For example, to add a new item, do as follows: * <pre> * getDocumentPDF().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DocumentPDF } * * */ public List<DocumentPDF> getDocumentPDF() { if (documentPDF == null) { documentPDF = new ArrayList<DocumentPDF>(); } return this.documentPDF; } }