// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs // 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: 2009.02.17 at 01:40:15 PM MEZ // package slash.navigation.kml.binding20; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <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 ref="{http://earth.google.com/kml/2.0}cookie" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}linkDescription" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}linkName" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}message" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}minRefreshPeriod" minOccurs="0"/> * </all> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "NetworkLinkControl") public class NetworkLinkControl { protected String cookie; protected String linkDescription; protected String linkName; protected String message; protected Integer minRefreshPeriod; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String id; /** * Gets the value of the cookie property. * * @return * possible object is * {@link String } * */ public String getCookie() { return cookie; } /** * Sets the value of the cookie property. * * @param value * allowed object is * {@link String } * */ public void setCookie(String value) { this.cookie = value; } /** * Gets the value of the linkDescription property. * * @return * possible object is * {@link String } * */ public String getLinkDescription() { return linkDescription; } /** * Sets the value of the linkDescription property. * * @param value * allowed object is * {@link String } * */ public void setLinkDescription(String value) { this.linkDescription = value; } /** * Gets the value of the linkName property. * * @return * possible object is * {@link String } * */ public String getLinkName() { return linkName; } /** * Sets the value of the linkName property. * * @param value * allowed object is * {@link String } * */ public void setLinkName(String value) { this.linkName = value; } /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } /** * Gets the value of the minRefreshPeriod property. * * @return * possible object is * {@link Integer } * */ public Integer getMinRefreshPeriod() { return minRefreshPeriod; } /** * Sets the value of the minRefreshPeriod property. * * @param value * allowed object is * {@link Integer } * */ public void setMinRefreshPeriod(Integer value) { this.minRefreshPeriod = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }