/tags/R1.4.0/hv-jaxb/src/main/java/com/microsoft/hsg/thing/oxm/jaxb/types/RcptPerson.java
# · Java · 112 lines · 28 code · 11 blank · 73 comment · 0 complexity · 103482114e73c126d6a6e6e394082eb7 MD5 · raw file
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
- // 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: 2013.05.07 at 02:23:59 PM PDT
- //
-
-
- package com.microsoft.hsg.thing.oxm.jaxb.types;
-
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlAttribute;
- import javax.xml.bind.annotation.XmlType;
- import javax.xml.bind.annotation.XmlValue;
-
-
- /**
- *
- * <pre>
- * <?xml version="1.0" encoding="UTF-8"?><summary xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.types">
- * Represents a message recipient who is identified by a
- * a unique Microsoft Health account identifier.
- * </summary>
- * </pre>
- *
- * <pre>
- * <?xml version="1.0" encoding="UTF-8"?><remarks xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.types">
- * The validated attribute determines whether the email
- * address must first be validated by the account owner. If
- * the validated attribute is true and the email address
- * hasn't been validated then an error will be returned.
- * </remarks>
- * </pre>
- *
- *
- * <p>Java class for RcptPerson complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="RcptPerson">
- * <simpleContent>
- * <extension base="<urn:com.microsoft.wc.types>guid">
- * <attribute name="validated" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
- * </extension>
- * </simpleContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "RcptPerson", propOrder = {
- "value"
- })
- public class RcptPerson {
-
- @XmlValue
- protected String value;
- @XmlAttribute(name = "validated", required = true)
- protected boolean validated;
-
- /**
- *
- * <pre>
- * <?xml version="1.0" encoding="UTF-8"?><summary xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.types"/>
- * </pre>
- *
- * <pre>
- * <?xml version="1.0" encoding="UTF-8"?><remarks xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.types"/>
- * </pre>
- *
- *
- * @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 validated property.
- *
- */
- public boolean isValidated() {
- return validated;
- }
-
- /**
- * Sets the value of the validated property.
- *
- */
- public void setValidated(boolean value) {
- this.validated = value;
- }
-
- }