/tags/R1.4.0/hv-jaxb/src/main/java/com/microsoft/hsg/methods/jaxb/record/ActivePersonAuthorization.java

# · Java · 433 lines · 142 code · 35 blank · 256 comment · 0 complexity · 349fbe0f7a27aa89481f8fa1ab4e1508 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.record;
  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. import com.microsoft.hsg.methods.jaxb.auth.AuthXml;
  15. /**
  16. *
  17. * <pre>
  18. * &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;summary xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.record" xmlns:wc-auth="urn:com.microsoft.wc.auth" xmlns:wc-types="urn:com.microsoft.wc.types"/&gt;
  19. * </pre>
  20. *
  21. * <pre>
  22. * &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;remarks xmlns="http://www.w3.org/2001/XMLSchema" xmlns:this="urn:com.microsoft.wc.record" xmlns:wc-auth="urn:com.microsoft.wc.auth" xmlns:wc-types="urn:com.microsoft.wc.types"/&gt;
  23. * </pre>
  24. *
  25. *
  26. * <p>Java class for ActivePersonAuthorization complex type.
  27. *
  28. * <p>The following schema fragment specifies the expected content contained within this class.
  29. *
  30. * <pre>
  31. * &lt;complexType name="ActivePersonAuthorization">
  32. * &lt;complexContent>
  33. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  34. * &lt;sequence>
  35. * &lt;element name="record-id" type="{urn:com.microsoft.wc.types}guid"/>
  36. * &lt;element name="person-id" type="{urn:com.microsoft.wc.types}guid"/>
  37. * &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
  38. * &lt;element name="record-custodian" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
  39. * &lt;element name="is-group" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
  40. * &lt;element name="contact-email" type="{urn:com.microsoft.wc.types}EmailAddress"/>
  41. * &lt;element name="contact-email-validated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
  42. * &lt;element name="record-display-name" type="{urn:com.microsoft.wc.types}string255" minOccurs="0"/>
  43. * &lt;element name="date-auth-expires" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
  44. * &lt;element name="auth-xml" type="{urn:com.microsoft.wc.auth}AuthXml" minOccurs="0"/>
  45. * &lt;element name="rel-type" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
  46. * &lt;element name="date-auth-created" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
  47. * &lt;element name="date-auth-updated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
  48. * &lt;element name="can-access-audit" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
  49. * &lt;/sequence>
  50. * &lt;/restriction>
  51. * &lt;/complexContent>
  52. * &lt;/complexType>
  53. * </pre>
  54. *
  55. *
  56. */
  57. @XmlAccessorType(XmlAccessType.FIELD)
  58. @XmlType(name = "ActivePersonAuthorization", propOrder = {
  59. "recordId",
  60. "personId",
  61. "name",
  62. "recordCustodian",
  63. "isGroup",
  64. "contactEmail",
  65. "contactEmailValidated",
  66. "recordDisplayName",
  67. "dateAuthExpires",
  68. "authXml",
  69. "relType",
  70. "dateAuthCreated",
  71. "dateAuthUpdated",
  72. "canAccessAudit"
  73. })
  74. public class ActivePersonAuthorization {
  75. @XmlElement(name = "record-id", required = true)
  76. protected String recordId;
  77. @XmlElement(name = "person-id", required = true)
  78. protected String personId;
  79. @XmlElement(required = true)
  80. protected String name;
  81. @XmlElement(name = "record-custodian")
  82. protected boolean recordCustodian;
  83. @XmlElement(name = "is-group")
  84. protected boolean isGroup;
  85. @XmlElement(name = "contact-email", required = true)
  86. protected String contactEmail;
  87. @XmlElement(name = "contact-email-validated")
  88. protected Boolean contactEmailValidated;
  89. @XmlElement(name = "record-display-name")
  90. protected String recordDisplayName;
  91. @XmlElement(name = "date-auth-expires")
  92. @XmlSchemaType(name = "dateTime")
  93. protected XMLGregorianCalendar dateAuthExpires;
  94. @XmlElement(name = "auth-xml")
  95. protected AuthXml authXml;
  96. @XmlElement(name = "rel-type")
  97. protected Integer relType;
  98. @XmlElement(name = "date-auth-created")
  99. @XmlSchemaType(name = "dateTime")
  100. protected XMLGregorianCalendar dateAuthCreated;
  101. @XmlElement(name = "date-auth-updated")
  102. @XmlSchemaType(name = "dateTime")
  103. protected XMLGregorianCalendar dateAuthUpdated;
  104. @XmlElement(name = "can-access-audit")
  105. protected Boolean canAccessAudit;
  106. /**
  107. * Gets the value of the recordId property.
  108. *
  109. * @return
  110. * possible object is
  111. * {@link String }
  112. *
  113. */
  114. public String getRecordId() {
  115. return recordId;
  116. }
  117. /**
  118. * Sets the value of the recordId property.
  119. *
  120. * @param value
  121. * allowed object is
  122. * {@link String }
  123. *
  124. */
  125. public void setRecordId(String value) {
  126. this.recordId = value;
  127. }
  128. /**
  129. * Gets the value of the personId property.
  130. *
  131. * @return
  132. * possible object is
  133. * {@link String }
  134. *
  135. */
  136. public String getPersonId() {
  137. return personId;
  138. }
  139. /**
  140. * Sets the value of the personId property.
  141. *
  142. * @param value
  143. * allowed object is
  144. * {@link String }
  145. *
  146. */
  147. public void setPersonId(String value) {
  148. this.personId = value;
  149. }
  150. /**
  151. * Gets the value of the name property.
  152. *
  153. * @return
  154. * possible object is
  155. * {@link String }
  156. *
  157. */
  158. public String getName() {
  159. return name;
  160. }
  161. /**
  162. * Sets the value of the name property.
  163. *
  164. * @param value
  165. * allowed object is
  166. * {@link String }
  167. *
  168. */
  169. public void setName(String value) {
  170. this.name = value;
  171. }
  172. /**
  173. * Gets the value of the recordCustodian property.
  174. *
  175. */
  176. public boolean isRecordCustodian() {
  177. return recordCustodian;
  178. }
  179. /**
  180. * Sets the value of the recordCustodian property.
  181. *
  182. */
  183. public void setRecordCustodian(boolean value) {
  184. this.recordCustodian = value;
  185. }
  186. /**
  187. * Gets the value of the isGroup property.
  188. *
  189. */
  190. public boolean isIsGroup() {
  191. return isGroup;
  192. }
  193. /**
  194. * Sets the value of the isGroup property.
  195. *
  196. */
  197. public void setIsGroup(boolean value) {
  198. this.isGroup = value;
  199. }
  200. /**
  201. * Gets the value of the contactEmail property.
  202. *
  203. * @return
  204. * possible object is
  205. * {@link String }
  206. *
  207. */
  208. public String getContactEmail() {
  209. return contactEmail;
  210. }
  211. /**
  212. * Sets the value of the contactEmail property.
  213. *
  214. * @param value
  215. * allowed object is
  216. * {@link String }
  217. *
  218. */
  219. public void setContactEmail(String value) {
  220. this.contactEmail = value;
  221. }
  222. /**
  223. * Gets the value of the contactEmailValidated property.
  224. *
  225. * @return
  226. * possible object is
  227. * {@link Boolean }
  228. *
  229. */
  230. public Boolean isContactEmailValidated() {
  231. return contactEmailValidated;
  232. }
  233. /**
  234. * Sets the value of the contactEmailValidated property.
  235. *
  236. * @param value
  237. * allowed object is
  238. * {@link Boolean }
  239. *
  240. */
  241. public void setContactEmailValidated(Boolean value) {
  242. this.contactEmailValidated = value;
  243. }
  244. /**
  245. * Gets the value of the recordDisplayName property.
  246. *
  247. * @return
  248. * possible object is
  249. * {@link String }
  250. *
  251. */
  252. public String getRecordDisplayName() {
  253. return recordDisplayName;
  254. }
  255. /**
  256. * Sets the value of the recordDisplayName property.
  257. *
  258. * @param value
  259. * allowed object is
  260. * {@link String }
  261. *
  262. */
  263. public void setRecordDisplayName(String value) {
  264. this.recordDisplayName = value;
  265. }
  266. /**
  267. * Gets the value of the dateAuthExpires property.
  268. *
  269. * @return
  270. * possible object is
  271. * {@link XMLGregorianCalendar }
  272. *
  273. */
  274. public XMLGregorianCalendar getDateAuthExpires() {
  275. return dateAuthExpires;
  276. }
  277. /**
  278. * Sets the value of the dateAuthExpires property.
  279. *
  280. * @param value
  281. * allowed object is
  282. * {@link XMLGregorianCalendar }
  283. *
  284. */
  285. public void setDateAuthExpires(XMLGregorianCalendar value) {
  286. this.dateAuthExpires = value;
  287. }
  288. /**
  289. * Gets the value of the authXml property.
  290. *
  291. * @return
  292. * possible object is
  293. * {@link AuthXml }
  294. *
  295. */
  296. public AuthXml getAuthXml() {
  297. return authXml;
  298. }
  299. /**
  300. * Sets the value of the authXml property.
  301. *
  302. * @param value
  303. * allowed object is
  304. * {@link AuthXml }
  305. *
  306. */
  307. public void setAuthXml(AuthXml value) {
  308. this.authXml = value;
  309. }
  310. /**
  311. * Gets the value of the relType property.
  312. *
  313. * @return
  314. * possible object is
  315. * {@link Integer }
  316. *
  317. */
  318. public Integer getRelType() {
  319. return relType;
  320. }
  321. /**
  322. * Sets the value of the relType property.
  323. *
  324. * @param value
  325. * allowed object is
  326. * {@link Integer }
  327. *
  328. */
  329. public void setRelType(Integer value) {
  330. this.relType = value;
  331. }
  332. /**
  333. * Gets the value of the dateAuthCreated property.
  334. *
  335. * @return
  336. * possible object is
  337. * {@link XMLGregorianCalendar }
  338. *
  339. */
  340. public XMLGregorianCalendar getDateAuthCreated() {
  341. return dateAuthCreated;
  342. }
  343. /**
  344. * Sets the value of the dateAuthCreated property.
  345. *
  346. * @param value
  347. * allowed object is
  348. * {@link XMLGregorianCalendar }
  349. *
  350. */
  351. public void setDateAuthCreated(XMLGregorianCalendar value) {
  352. this.dateAuthCreated = value;
  353. }
  354. /**
  355. * Gets the value of the dateAuthUpdated property.
  356. *
  357. * @return
  358. * possible object is
  359. * {@link XMLGregorianCalendar }
  360. *
  361. */
  362. public XMLGregorianCalendar getDateAuthUpdated() {
  363. return dateAuthUpdated;
  364. }
  365. /**
  366. * Sets the value of the dateAuthUpdated property.
  367. *
  368. * @param value
  369. * allowed object is
  370. * {@link XMLGregorianCalendar }
  371. *
  372. */
  373. public void setDateAuthUpdated(XMLGregorianCalendar value) {
  374. this.dateAuthUpdated = value;
  375. }
  376. /**
  377. * Gets the value of the canAccessAudit property.
  378. *
  379. * @return
  380. * possible object is
  381. * {@link Boolean }
  382. *
  383. */
  384. public Boolean isCanAccessAudit() {
  385. return canAccessAudit;
  386. }
  387. /**
  388. * Sets the value of the canAccessAudit property.
  389. *
  390. * @param value
  391. * allowed object is
  392. * {@link Boolean }
  393. *
  394. */
  395. public void setCanAccessAudit(Boolean value) {
  396. this.canAccessAudit = value;
  397. }
  398. }