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

net.sourceforge.ota_tools.jaxb.ota2010a.ping.EmailType 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.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;


/**
 * Electronic email addresses, in IETF specified format.
 * 
 * 

Java class for EmailType complex type. * *

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

 * <complexType name="EmailType">
 *   <simpleContent>
 *     <extension base="<http://www.opentravel.org/OTA/2003/05>StringLength1to128">
 *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}DefaultIndGroup"/>
 *       <attGroup ref="{http://www.opentravel.org/OTA/2003/05}PrivacyGroup"/>
 *       <attribute name="EmailType" type="{http://www.opentravel.org/OTA/2003/05}OTA_CodeType" />
 *       <attribute name="RPH" type="{http://www.opentravel.org/OTA/2003/05}RPH_Type" />
 *       <attribute name="Remark" type="{http://www.opentravel.org/OTA/2003/05}StringLength1to128" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EmailType", propOrder = { "value" }) @XmlSeeAlso({ net.sourceforge.ota_tools.jaxb.ota2010a.ping.CustomerType.Email.class }) public class EmailType { @XmlValue protected String value; @XmlAttribute(name = "EmailType") protected String emailType; @XmlAttribute(name = "RPH") protected String rph; @XmlAttribute(name = "Remark") protected String remark; @XmlAttribute(name = "DefaultInd") protected Boolean defaultInd; @XmlAttribute(name = "ShareSynchInd") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String shareSynchInd; @XmlAttribute(name = "ShareMarketInd") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String shareMarketInd; /** * Used for Character Strings, length 1 to 128. * * @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 emailType property. * * @return * possible object is * {@link String } * */ public String getEmailType() { return emailType; } /** * Sets the value of the emailType property. * * @param value * allowed object is * {@link String } * */ public void setEmailType(String value) { this.emailType = value; } /** * Gets the value of the rph property. * * @return * possible object is * {@link String } * */ public String getRPH() { return rph; } /** * Sets the value of the rph property. * * @param value * allowed object is * {@link String } * */ public void setRPH(String value) { this.rph = value; } /** * Gets the value of the remark property. * * @return * possible object is * {@link String } * */ public String getRemark() { return remark; } /** * Sets the value of the remark property. * * @param value * allowed object is * {@link String } * */ public void setRemark(String value) { this.remark = 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; } /** * 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy