/*! * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * Copyright (c) 2002-2015 Pentaho Corporation.. All rights reserved. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.03.31 at 02:27:39 PM EDT // package org.pentaho.platform.plugin.services.importer.mimeType.bindings; 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 ImportHandlerMimeTypeDefinitionsDto complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ImportHandlerMimeTypeDefinitionsDto"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ImportHandler" type="{http://www.pentaho.com/schema/}ImportHandlerDto" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType( XmlAccessType.FIELD ) @XmlType( name = "ImportHandlerMimeTypeDefinitionsDto", propOrder = { "importHandler" } ) public class ImportHandlerMimeTypeDefinitionsDto { @XmlElement( name = "ImportHandler", required = true ) protected List<ImportHandlerDto> importHandler; /** * Gets the value of the importHandler 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 importHandler property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getImportHandler().add( newItem ); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list {@link ImportHandlerDto } * * */ public List<ImportHandlerDto> getImportHandler() { if ( importHandler == null ) { importHandler = new ArrayList<ImportHandlerDto>(); } return this.importHandler; } }