// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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: 2012.07.12 at 11:32:44 AM EEST // package org.agnitas.emm.springws.jaxb; 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.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ContentBlock" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="contentID" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="targetID" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="order" type="{http://www.w3.org/2001/XMLSchema}int"/> * </all> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "contentBlock" }) @XmlRootElement(name = "ListContentBlocksResponse") public class ListContentBlocksResponse { @XmlElement(name = "ContentBlock") protected List<ListContentBlocksResponse.ContentBlock> contentBlock; /** * Gets the value of the contentBlock 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 contentBlock property. * * <p> * For example, to add a new item, do as follows: * <pre> * getContentBlock().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ListContentBlocksResponse.ContentBlock } * * */ public List<ListContentBlocksResponse.ContentBlock> getContentBlock() { if (contentBlock == null) { contentBlock = new ArrayList<ListContentBlocksResponse.ContentBlock>(); } return this.contentBlock; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="contentID" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="targetID" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="order" type="{http://www.w3.org/2001/XMLSchema}int"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) public static class ContentBlock { protected int contentID; @XmlElement(required = true) protected String name; protected int targetID; protected int order; /** * Gets the value of the contentID property. * */ public int getContentID() { return contentID; } /** * Sets the value of the contentID property. * */ public void setContentID(int value) { this.contentID = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the targetID property. * */ public int getTargetID() { return targetID; } /** * Sets the value of the targetID property. * */ public void setTargetID(int value) { this.targetID = value; } /** * Gets the value of the order property. * */ public int getOrder() { return order; } /** * Sets the value of the order property. * */ public void setOrder(int value) { this.order = value; } } }