ProductType.java
package sk.iway.iwcm.components.weather.met.no.generated;
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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Element describing a weatherproduct by
* time-elements, location-elements and a set of weather-elements.
*
*
* <p>Java class for productType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="productType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="time" type="{}timeType" maxOccurs="unbounded"/>
* </sequence>
* <attribute name="class" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="pointData"/>
* <enumeration value="extremes"/>
* <enumeration value="forestfireindex"/>
* <enumeration value="uvforecast"/>
* <enumeration value="tidalwater"/>
* <enumeration value="buoy"/>
* <enumeration value="stavernodden"/>
* <enumeration value="seaapproachforecast"/>
* <enumeration value="temperatureverification"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "productType", propOrder = {
"time"
})
public class ProductType {
@XmlElement(required = true)
protected List<TimeType> time;
@XmlAttribute(name = "class", required = true)
protected String clazz;
/**
* Gets the value of the time 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 time property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTime().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TimeType }
*
*
*/
public List<TimeType> getTime() {
if (time == null) {
time = new ArrayList<TimeType>();
}
return this.time;
}
/**
* Gets the value of the clazz property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClazz() {
return clazz;
}
/**
* Sets the value of the clazz property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setClazz(String value) {
this.clazz = value;
}
}