/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

  1. //
  2. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
  3. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  4. // Any modifications to this file will be lost upon recompilation of the source schema.
  5. // Generated on: 2013.05.07 at 02:23:59 PM PDT
  6. //
  7. package com.microsoft.hsg.thing.oxm.jaxb.types;
  8. import javax.xml.bind.annotation.XmlAccessType;
  9. import javax.xml.bind.annotation.XmlAccessorType;
  10. import javax.xml.bind.annotation.XmlAttribute;
  11. import javax.xml.bind.annotation.XmlType;
  12. import javax.xml.bind.annotation.XmlValue;
  13. /**
  14. *
  15. * <pre>
  16. * &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;summary xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.types"&gt;
  17. * Represents a message recipient who is identified by a
  18. * a unique Microsoft Health account identifier.
  19. * &lt;/summary&gt;
  20. * </pre>
  21. *
  22. * <pre>
  23. * &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;remarks xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.types"&gt;
  24. * The validated attribute determines whether the email
  25. * address must first be validated by the account owner. If
  26. * the validated attribute is true and the email address
  27. * hasn't been validated then an error will be returned.
  28. * &lt;/remarks&gt;
  29. * </pre>
  30. *
  31. *
  32. * <p>Java class for RcptPerson complex type.
  33. *
  34. * <p>The following schema fragment specifies the expected content contained within this class.
  35. *
  36. * <pre>
  37. * &lt;complexType name="RcptPerson">
  38. * &lt;simpleContent>
  39. * &lt;extension base="&lt;urn:com.microsoft.wc.types>guid">
  40. * &lt;attribute name="validated" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
  41. * &lt;/extension>
  42. * &lt;/simpleContent>
  43. * &lt;/complexType>
  44. * </pre>
  45. *
  46. *
  47. */
  48. @XmlAccessorType(XmlAccessType.FIELD)
  49. @XmlType(name = "RcptPerson", propOrder = {
  50. "value"
  51. })
  52. public class RcptPerson {
  53. @XmlValue
  54. protected String value;
  55. @XmlAttribute(name = "validated", required = true)
  56. protected boolean validated;
  57. /**
  58. *
  59. * <pre>
  60. * &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;summary xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.types"/&gt;
  61. * </pre>
  62. *
  63. * <pre>
  64. * &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;remarks xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.types"/&gt;
  65. * </pre>
  66. *
  67. *
  68. * @return
  69. * possible object is
  70. * {@link String }
  71. *
  72. */
  73. public String getValue() {
  74. return value;
  75. }
  76. /**
  77. * Sets the value of the value property.
  78. *
  79. * @param value
  80. * allowed object is
  81. * {@link String }
  82. *
  83. */
  84. public void setValue(String value) {
  85. this.value = value;
  86. }
  87. /**
  88. * Gets the value of the validated property.
  89. *
  90. */
  91. public boolean isValidated() {
  92. return validated;
  93. }
  94. /**
  95. * Sets the value of the validated property.
  96. *
  97. */
  98. public void setValidated(boolean value) {
  99. this.validated = value;
  100. }
  101. }