package com.thesecretserver.service;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for UserInfoResult complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="UserInfoResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Errors" type="{urn:thesecretserver.com}ArrayOfString" minOccurs="0"/>
* <element name="DisplayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="UserName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="KnownAs" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="UserId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="DomainId" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="DomainName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UserInfoResult", propOrder = {
"errors",
"displayName",
"userName",
"knownAs",
"userId",
"domainId",
"domainName"
})
public class UserInfoResult {
@XmlElement(name = "Errors")
protected ArrayOfString errors;
@XmlElement(name = "DisplayName")
protected String displayName;
@XmlElement(name = "UserName")
protected String userName;
@XmlElement(name = "KnownAs")
protected String knownAs;
@XmlElement(name = "UserId")
protected int userId;
@XmlElement(name = "DomainId")
protected int domainId;
@XmlElement(name = "DomainName")
protected String domainName;
/**
* Gets the value of the errors property.
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getErrors() {
return errors;
}
/**
* Sets the value of the errors property.
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setErrors(ArrayOfString value) {
this.errors = value;
}
/**
* Gets the value of the displayName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDisplayName() {
return displayName;
}
/**
* Sets the value of the displayName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDisplayName(String value) {
this.displayName = value;
}
/**
* Gets the value of the userName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserName() {
return userName;
}
/**
* Sets the value of the userName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserName(String value) {
this.userName = value;
}
/**
* Gets the value of the knownAs property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKnownAs() {
return knownAs;
}
/**
* Sets the value of the knownAs property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKnownAs(String value) {
this.knownAs = value;
}
/**
* Gets the value of the userId property.
*
*/
public int getUserId() {
return userId;
}
/**
* Sets the value of the userId property.
*
*/
public void setUserId(int value) {
this.userId = value;
}
/**
* Gets the value of the domainId property.
*
*/
public int getDomainId() {
return domainId;
}
/**
* Sets the value of the domainId property.
*
*/
public void setDomainId(int value) {
this.domainId = value;
}
/**
* Gets the value of the domainName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDomainName() {
return domainName;
}
/**
* Sets the value of the domainName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDomainName(String value) {
this.domainName = value;
}
}