/tags/R1.4.0/hv-jaxb/src/main/java/com/microsoft/hsg/methods/jaxb/personconfiguration/PersonInfoInternal.java

# · Java · 391 lines · 122 code · 31 blank · 238 comment · 0 complexity · 71672480f5211a5e66a9070275b1e9b2 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.14 at 10:04:11 PM PDT
  6. //
  7. package com.microsoft.hsg.methods.jaxb.personconfiguration;
  8. import javax.xml.bind.annotation.XmlAccessType;
  9. import javax.xml.bind.annotation.XmlAccessorType;
  10. import javax.xml.bind.annotation.XmlElement;
  11. import javax.xml.bind.annotation.XmlSchemaType;
  12. import javax.xml.bind.annotation.XmlType;
  13. import javax.xml.datatype.XMLGregorianCalendar;
  14. /**
  15. *
  16. * <pre>
  17. * &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;summary xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.person" xmlns:wc-auth="urn:com.microsoft.wc.auth" xmlns:wc-types="urn:com.microsoft.wc.types"/&gt;
  18. * </pre>
  19. *
  20. * <pre>
  21. * &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;remarks xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.person" xmlns:wc-auth="urn:com.microsoft.wc.auth" xmlns:wc-types="urn:com.microsoft.wc.types"/&gt;
  22. * </pre>
  23. *
  24. *
  25. * <p>Java class for PersonInfoInternal complex type.
  26. *
  27. * <p>The following schema fragment specifies the expected content contained within this class.
  28. *
  29. * <pre>
  30. * &lt;complexType name="PersonInfoInternal">
  31. * &lt;complexContent>
  32. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  33. * &lt;sequence>
  34. * &lt;element name="is-newsletter-subscriber" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
  35. * &lt;element name="security-contact" type="{urn:com.microsoft.wc.person}SecurityContactInfo" minOccurs="0"/>
  36. * &lt;element name="is-health-statement-subscriber" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
  37. * &lt;element name="health-statement-last-sent-date" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
  38. * &lt;element name="contact-email" type="{urn:com.microsoft.wc.types}EmailAddress" minOccurs="0"/>
  39. * &lt;element name="contact-email-validated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
  40. * &lt;element name="contact-validation-token" type="{urn:com.microsoft.wc.types}guid" minOccurs="0"/>
  41. * &lt;element name="is-eprep-user" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
  42. * &lt;element name="is-wmgmt-user" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
  43. * &lt;element name="version-stamp" type="{http://www.w3.org/2001/XMLSchema}string"/>
  44. * &lt;element name="date-created" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
  45. * &lt;element name="person-state" type="{urn:com.microsoft.wc.person}PersonState"/>
  46. * &lt;/sequence>
  47. * &lt;/restriction>
  48. * &lt;/complexContent>
  49. * &lt;/complexType>
  50. * </pre>
  51. *
  52. *
  53. */
  54. @XmlAccessorType(XmlAccessType.FIELD)
  55. @XmlType(name = "PersonInfoInternal", propOrder = {
  56. "isNewsletterSubscriber",
  57. "securityContact",
  58. "isHealthStatementSubscriber",
  59. "healthStatementLastSentDate",
  60. "contactEmail",
  61. "contactEmailValidated",
  62. "contactValidationToken",
  63. "isEprepUser",
  64. "isWmgmtUser",
  65. "versionStamp",
  66. "dateCreated",
  67. "personState"
  68. })
  69. public class PersonInfoInternal {
  70. @XmlElement(name = "is-newsletter-subscriber")
  71. protected Boolean isNewsletterSubscriber;
  72. @XmlElement(name = "security-contact")
  73. protected SecurityContactInfo securityContact;
  74. @XmlElement(name = "is-health-statement-subscriber")
  75. protected Boolean isHealthStatementSubscriber;
  76. @XmlElement(name = "health-statement-last-sent-date")
  77. @XmlSchemaType(name = "dateTime")
  78. protected XMLGregorianCalendar healthStatementLastSentDate;
  79. @XmlElement(name = "contact-email")
  80. protected String contactEmail;
  81. @XmlElement(name = "contact-email-validated")
  82. protected Boolean contactEmailValidated;
  83. @XmlElement(name = "contact-validation-token")
  84. protected String contactValidationToken;
  85. @XmlElement(name = "is-eprep-user")
  86. protected Boolean isEprepUser;
  87. @XmlElement(name = "is-wmgmt-user")
  88. protected Boolean isWmgmtUser;
  89. @XmlElement(name = "version-stamp", required = true)
  90. protected String versionStamp;
  91. @XmlElement(name = "date-created", required = true)
  92. @XmlSchemaType(name = "dateTime")
  93. protected XMLGregorianCalendar dateCreated;
  94. @XmlElement(name = "person-state", required = true)
  95. protected PersonState personState;
  96. /**
  97. * Gets the value of the isNewsletterSubscriber property.
  98. *
  99. * @return
  100. * possible object is
  101. * {@link Boolean }
  102. *
  103. */
  104. public Boolean isIsNewsletterSubscriber() {
  105. return isNewsletterSubscriber;
  106. }
  107. /**
  108. * Sets the value of the isNewsletterSubscriber property.
  109. *
  110. * @param value
  111. * allowed object is
  112. * {@link Boolean }
  113. *
  114. */
  115. public void setIsNewsletterSubscriber(Boolean value) {
  116. this.isNewsletterSubscriber = value;
  117. }
  118. /**
  119. * Gets the value of the securityContact property.
  120. *
  121. * @return
  122. * possible object is
  123. * {@link SecurityContactInfo }
  124. *
  125. */
  126. public SecurityContactInfo getSecurityContact() {
  127. return securityContact;
  128. }
  129. /**
  130. * Sets the value of the securityContact property.
  131. *
  132. * @param value
  133. * allowed object is
  134. * {@link SecurityContactInfo }
  135. *
  136. */
  137. public void setSecurityContact(SecurityContactInfo value) {
  138. this.securityContact = value;
  139. }
  140. /**
  141. * Gets the value of the isHealthStatementSubscriber property.
  142. *
  143. * @return
  144. * possible object is
  145. * {@link Boolean }
  146. *
  147. */
  148. public Boolean isIsHealthStatementSubscriber() {
  149. return isHealthStatementSubscriber;
  150. }
  151. /**
  152. * Sets the value of the isHealthStatementSubscriber property.
  153. *
  154. * @param value
  155. * allowed object is
  156. * {@link Boolean }
  157. *
  158. */
  159. public void setIsHealthStatementSubscriber(Boolean value) {
  160. this.isHealthStatementSubscriber = value;
  161. }
  162. /**
  163. * Gets the value of the healthStatementLastSentDate property.
  164. *
  165. * @return
  166. * possible object is
  167. * {@link XMLGregorianCalendar }
  168. *
  169. */
  170. public XMLGregorianCalendar getHealthStatementLastSentDate() {
  171. return healthStatementLastSentDate;
  172. }
  173. /**
  174. * Sets the value of the healthStatementLastSentDate property.
  175. *
  176. * @param value
  177. * allowed object is
  178. * {@link XMLGregorianCalendar }
  179. *
  180. */
  181. public void setHealthStatementLastSentDate(XMLGregorianCalendar value) {
  182. this.healthStatementLastSentDate = value;
  183. }
  184. /**
  185. * Gets the value of the contactEmail property.
  186. *
  187. * @return
  188. * possible object is
  189. * {@link String }
  190. *
  191. */
  192. public String getContactEmail() {
  193. return contactEmail;
  194. }
  195. /**
  196. * Sets the value of the contactEmail property.
  197. *
  198. * @param value
  199. * allowed object is
  200. * {@link String }
  201. *
  202. */
  203. public void setContactEmail(String value) {
  204. this.contactEmail = value;
  205. }
  206. /**
  207. * Gets the value of the contactEmailValidated property.
  208. *
  209. * @return
  210. * possible object is
  211. * {@link Boolean }
  212. *
  213. */
  214. public Boolean isContactEmailValidated() {
  215. return contactEmailValidated;
  216. }
  217. /**
  218. * Sets the value of the contactEmailValidated property.
  219. *
  220. * @param value
  221. * allowed object is
  222. * {@link Boolean }
  223. *
  224. */
  225. public void setContactEmailValidated(Boolean value) {
  226. this.contactEmailValidated = value;
  227. }
  228. /**
  229. * Gets the value of the contactValidationToken property.
  230. *
  231. * @return
  232. * possible object is
  233. * {@link String }
  234. *
  235. */
  236. public String getContactValidationToken() {
  237. return contactValidationToken;
  238. }
  239. /**
  240. * Sets the value of the contactValidationToken property.
  241. *
  242. * @param value
  243. * allowed object is
  244. * {@link String }
  245. *
  246. */
  247. public void setContactValidationToken(String value) {
  248. this.contactValidationToken = value;
  249. }
  250. /**
  251. * Gets the value of the isEprepUser property.
  252. *
  253. * @return
  254. * possible object is
  255. * {@link Boolean }
  256. *
  257. */
  258. public Boolean isIsEprepUser() {
  259. return isEprepUser;
  260. }
  261. /**
  262. * Sets the value of the isEprepUser property.
  263. *
  264. * @param value
  265. * allowed object is
  266. * {@link Boolean }
  267. *
  268. */
  269. public void setIsEprepUser(Boolean value) {
  270. this.isEprepUser = value;
  271. }
  272. /**
  273. * Gets the value of the isWmgmtUser property.
  274. *
  275. * @return
  276. * possible object is
  277. * {@link Boolean }
  278. *
  279. */
  280. public Boolean isIsWmgmtUser() {
  281. return isWmgmtUser;
  282. }
  283. /**
  284. * Sets the value of the isWmgmtUser property.
  285. *
  286. * @param value
  287. * allowed object is
  288. * {@link Boolean }
  289. *
  290. */
  291. public void setIsWmgmtUser(Boolean value) {
  292. this.isWmgmtUser = value;
  293. }
  294. /**
  295. * Gets the value of the versionStamp property.
  296. *
  297. * @return
  298. * possible object is
  299. * {@link String }
  300. *
  301. */
  302. public String getVersionStamp() {
  303. return versionStamp;
  304. }
  305. /**
  306. * Sets the value of the versionStamp property.
  307. *
  308. * @param value
  309. * allowed object is
  310. * {@link String }
  311. *
  312. */
  313. public void setVersionStamp(String value) {
  314. this.versionStamp = value;
  315. }
  316. /**
  317. * Gets the value of the dateCreated property.
  318. *
  319. * @return
  320. * possible object is
  321. * {@link XMLGregorianCalendar }
  322. *
  323. */
  324. public XMLGregorianCalendar getDateCreated() {
  325. return dateCreated;
  326. }
  327. /**
  328. * Sets the value of the dateCreated property.
  329. *
  330. * @param value
  331. * allowed object is
  332. * {@link XMLGregorianCalendar }
  333. *
  334. */
  335. public void setDateCreated(XMLGregorianCalendar value) {
  336. this.dateCreated = value;
  337. }
  338. /**
  339. * Gets the value of the personState property.
  340. *
  341. * @return
  342. * possible object is
  343. * {@link PersonState }
  344. *
  345. */
  346. public PersonState getPersonState() {
  347. return personState;
  348. }
  349. /**
  350. * Sets the value of the personState property.
  351. *
  352. * @param value
  353. * allowed object is
  354. * {@link PersonState }
  355. *
  356. */
  357. public void setPersonState(PersonState value) {
  358. this.personState = value;
  359. }
  360. }