/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
- //
- // 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.14 at 10:04:11 PM PDT
- //
-
-
- package com.microsoft.hsg.methods.jaxb.record;
-
- import javax.xml.bind.annotation.XmlAccessType;
- import javax.xml.bind.annotation.XmlAccessorType;
- import javax.xml.bind.annotation.XmlElement;
- import javax.xml.bind.annotation.XmlSchemaType;
- import javax.xml.bind.annotation.XmlType;
- import javax.xml.datatype.XMLGregorianCalendar;
- import com.microsoft.hsg.methods.jaxb.auth.AuthXml;
-
-
- /**
- *
- * <pre>
- * <?xml version="1.0" encoding="UTF-8"?><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"/>
- * </pre>
- *
- * <pre>
- * <?xml version="1.0" encoding="UTF-8"?><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"/>
- * </pre>
- *
- *
- * <p>Java class for ActivePersonAuthorization complex type.
- *
- * <p>The following schema fragment specifies the expected content contained within this class.
- *
- * <pre>
- * <complexType name="ActivePersonAuthorization">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="record-id" type="{urn:com.microsoft.wc.types}guid"/>
- * <element name="person-id" type="{urn:com.microsoft.wc.types}guid"/>
- * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="record-custodian" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="is-group" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- * <element name="contact-email" type="{urn:com.microsoft.wc.types}EmailAddress"/>
- * <element name="contact-email-validated" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- * <element name="record-display-name" type="{urn:com.microsoft.wc.types}string255" minOccurs="0"/>
- * <element name="date-auth-expires" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- * <element name="auth-xml" type="{urn:com.microsoft.wc.auth}AuthXml" minOccurs="0"/>
- * <element name="rel-type" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
- * <element name="date-auth-created" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- * <element name="date-auth-updated" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
- * <element name="can-access-audit" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "ActivePersonAuthorization", propOrder = {
- "recordId",
- "personId",
- "name",
- "recordCustodian",
- "isGroup",
- "contactEmail",
- "contactEmailValidated",
- "recordDisplayName",
- "dateAuthExpires",
- "authXml",
- "relType",
- "dateAuthCreated",
- "dateAuthUpdated",
- "canAccessAudit"
- })
- public class ActivePersonAuthorization {
-
- @XmlElement(name = "record-id", required = true)
- protected String recordId;
- @XmlElement(name = "person-id", required = true)
- protected String personId;
- @XmlElement(required = true)
- protected String name;
- @XmlElement(name = "record-custodian")
- protected boolean recordCustodian;
- @XmlElement(name = "is-group")
- protected boolean isGroup;
- @XmlElement(name = "contact-email", required = true)
- protected String contactEmail;
- @XmlElement(name = "contact-email-validated")
- protected Boolean contactEmailValidated;
- @XmlElement(name = "record-display-name")
- protected String recordDisplayName;
- @XmlElement(name = "date-auth-expires")
- @XmlSchemaType(name = "dateTime")
- protected XMLGregorianCalendar dateAuthExpires;
- @XmlElement(name = "auth-xml")
- protected AuthXml authXml;
- @XmlElement(name = "rel-type")
- protected Integer relType;
- @XmlElement(name = "date-auth-created")
- @XmlSchemaType(name = "dateTime")
- protected XMLGregorianCalendar dateAuthCreated;
- @XmlElement(name = "date-auth-updated")
- @XmlSchemaType(name = "dateTime")
- protected XMLGregorianCalendar dateAuthUpdated;
- @XmlElement(name = "can-access-audit")
- protected Boolean canAccessAudit;
-
- /**
- * Gets the value of the recordId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRecordId() {
- return recordId;
- }
-
- /**
- * Sets the value of the recordId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRecordId(String value) {
- this.recordId = value;
- }
-
- /**
- * Gets the value of the personId property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getPersonId() {
- return personId;
- }
-
- /**
- * Sets the value of the personId property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setPersonId(String value) {
- this.personId = value;
- }
-
- /**
- * Gets the value of the name property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getName() {
- return name;
- }
-
- /**
- * Sets the value of the name property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setName(String value) {
- this.name = value;
- }
-
- /**
- * Gets the value of the recordCustodian property.
- *
- */
- public boolean isRecordCustodian() {
- return recordCustodian;
- }
-
- /**
- * Sets the value of the recordCustodian property.
- *
- */
- public void setRecordCustodian(boolean value) {
- this.recordCustodian = value;
- }
-
- /**
- * Gets the value of the isGroup property.
- *
- */
- public boolean isIsGroup() {
- return isGroup;
- }
-
- /**
- * Sets the value of the isGroup property.
- *
- */
- public void setIsGroup(boolean value) {
- this.isGroup = value;
- }
-
- /**
- * Gets the value of the contactEmail property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getContactEmail() {
- return contactEmail;
- }
-
- /**
- * Sets the value of the contactEmail property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setContactEmail(String value) {
- this.contactEmail = value;
- }
-
- /**
- * Gets the value of the contactEmailValidated property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public Boolean isContactEmailValidated() {
- return contactEmailValidated;
- }
-
- /**
- * Sets the value of the contactEmailValidated property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setContactEmailValidated(Boolean value) {
- this.contactEmailValidated = value;
- }
-
- /**
- * Gets the value of the recordDisplayName property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getRecordDisplayName() {
- return recordDisplayName;
- }
-
- /**
- * Sets the value of the recordDisplayName property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setRecordDisplayName(String value) {
- this.recordDisplayName = value;
- }
-
- /**
- * Gets the value of the dateAuthExpires property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getDateAuthExpires() {
- return dateAuthExpires;
- }
-
- /**
- * Sets the value of the dateAuthExpires property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setDateAuthExpires(XMLGregorianCalendar value) {
- this.dateAuthExpires = value;
- }
-
- /**
- * Gets the value of the authXml property.
- *
- * @return
- * possible object is
- * {@link AuthXml }
- *
- */
- public AuthXml getAuthXml() {
- return authXml;
- }
-
- /**
- * Sets the value of the authXml property.
- *
- * @param value
- * allowed object is
- * {@link AuthXml }
- *
- */
- public void setAuthXml(AuthXml value) {
- this.authXml = value;
- }
-
- /**
- * Gets the value of the relType property.
- *
- * @return
- * possible object is
- * {@link Integer }
- *
- */
- public Integer getRelType() {
- return relType;
- }
-
- /**
- * Sets the value of the relType property.
- *
- * @param value
- * allowed object is
- * {@link Integer }
- *
- */
- public void setRelType(Integer value) {
- this.relType = value;
- }
-
- /**
- * Gets the value of the dateAuthCreated property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getDateAuthCreated() {
- return dateAuthCreated;
- }
-
- /**
- * Sets the value of the dateAuthCreated property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setDateAuthCreated(XMLGregorianCalendar value) {
- this.dateAuthCreated = value;
- }
-
- /**
- * Gets the value of the dateAuthUpdated property.
- *
- * @return
- * possible object is
- * {@link XMLGregorianCalendar }
- *
- */
- public XMLGregorianCalendar getDateAuthUpdated() {
- return dateAuthUpdated;
- }
-
- /**
- * Sets the value of the dateAuthUpdated property.
- *
- * @param value
- * allowed object is
- * {@link XMLGregorianCalendar }
- *
- */
- public void setDateAuthUpdated(XMLGregorianCalendar value) {
- this.dateAuthUpdated = value;
- }
-
- /**
- * Gets the value of the canAccessAudit property.
- *
- * @return
- * possible object is
- * {@link Boolean }
- *
- */
- public Boolean isCanAccessAudit() {
- return canAccessAudit;
- }
-
- /**
- * Sets the value of the canAccessAudit property.
- *
- * @param value
- * allowed object is
- * {@link Boolean }
- *
- */
- public void setCanAccessAudit(Boolean value) {
- this.canAccessAudit = value;
- }
-
- }