All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.ota_tools.jaxb.ota2010a.ping.URLType Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.12.31 at 04:22:27 PM PST 
//


package net.sourceforge.ota_tools.jaxb.ota2010a.ping;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * Web site address, in IETF specified format.
 * 
 * 

Java class for URL_Type complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="URL_Type">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>anyURI">
 *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}PrivacyGroup"/>
 *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}DefaultIndGroup"/>
 *       <attribute name="Type" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to16" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "URL_Type", propOrder = { "value" }) @XmlSeeAlso({ net.sourceforge.ota_tools.jaxb.ota2010a.ping.CustomerType.URL.class }) public class URLType { @XmlValue @XmlSchemaType(name = "anyURI") protected String value; @XmlAttribute(name = "Type") protected String type; @XmlAttribute(name = "ShareSynchInd") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String shareSynchInd; @XmlAttribute(name = "ShareMarketInd") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String shareMarketInd; @XmlAttribute(name = "DefaultInd") protected Boolean defaultInd; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the shareSynchInd property. * * @return * possible object is * {@link String } * */ public String getShareSynchInd() { return shareSynchInd; } /** * Sets the value of the shareSynchInd property. * * @param value * allowed object is * {@link String } * */ public void setShareSynchInd(String value) { this.shareSynchInd = value; } /** * Gets the value of the shareMarketInd property. * * @return * possible object is * {@link String } * */ public String getShareMarketInd() { return shareMarketInd; } /** * Sets the value of the shareMarketInd property. * * @param value * allowed object is * {@link String } * */ public void setShareMarketInd(String value) { this.shareMarketInd = value; } /** * Gets the value of the defaultInd property. * * @return * possible object is * {@link Boolean } * */ public Boolean getDefaultInd() { return defaultInd; } /** * Sets the value of the defaultInd property. * * @param value * allowed object is * {@link Boolean } * */ public void setDefaultInd(Boolean value) { this.defaultInd = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy