ca.canadapost.cpcdp.rating.generated.discovery.Links Maven / Gradle / Ivy
Show all versions of shopizer-shipping-canadapost-module Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.03.13 at 11:05:37 AM EDT
//
package ca.canadapost.cpcdp.rating.generated.discovery;
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;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"links"
})
@XmlRootElement(name = "links")
public class Links {
@XmlElement(name = "link", required = true)
protected List links;
/**
* Gets the value of the links property.
*
*
* 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 set
method for the links property.
*
*
* For example, to add a new item, do as follows:
*
* getLinks().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Link }
*
* @return List of Link
*/
public List getLinks() {
if (links == null) {
links = new ArrayList();
}
return this.links;
}
}