001 /*
002 * The MIT License
003 * Copyright (c) 2012 Microsoft Corporation
004 *
005 * Permission is hereby granted, free of charge, to any person obtaining a copy
006 * of this software and associated documentation files (the "Software"), to deal
007 * in the Software without restriction, including without limitation the rights
008 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
009 * copies of the Software, and to permit persons to whom the Software is
010 * furnished to do so, subject to the following conditions:
011 *
012 * The above copyright notice and this permission notice shall be included in
013 * all copies or substantial portions of the Software.
014 *
015 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
016 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
017 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
018 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
019 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
020 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
021 * THE SOFTWARE.
022 */
023
024 package microsoft.exchange.webservices.data.autodiscover.exception.error;
025
026 import microsoft.exchange.webservices.data.autodiscover.enumeration.AutodiscoverErrorCode;
027 import microsoft.exchange.webservices.data.core.EwsXmlReader;
028 import microsoft.exchange.webservices.data.core.XmlElementNames;
029 import microsoft.exchange.webservices.data.core.enumeration.misc.XmlNamespace;
030 import microsoft.exchange.webservices.data.security.XmlNodeType;
031
032 /**
033 * Represents an error from a GetDomainSettings request.
034 */
035 public final class DomainSettingError {
036
037 /**
038 * The error code.
039 */
040 private AutodiscoverErrorCode errorCode;
041
042 /**
043 * The error message.
044 */
045 private String errorMessage;
046
047 /**
048 * The setting name.
049 */
050 private String settingName;
051
052 /**
053 * Initializes a new instance of the {@link DomainSettingError} class.
054 */
055 public DomainSettingError() {
056 }
057
058 /**
059 * Loads from XML.
060 *
061 * @param reader The reader.
062 * @throws Exception the exception
063 */
064 public void loadFromXml(EwsXmlReader reader) throws Exception {
065 do {
066 reader.read();
067
068 if (reader.getNodeType().getNodeType() == XmlNodeType.START_ELEMENT) {
069 if (reader.getLocalName().equals(XmlElementNames.ErrorCode)) {
070 this.errorCode = reader
071 .readElementValue(AutodiscoverErrorCode.class);
072 } else if (reader.getLocalName().equals(
073 XmlElementNames.ErrorMessage)) {
074 this.errorMessage = reader.readElementValue();
075 } else if (reader.getLocalName().equals(
076 XmlElementNames.SettingName)) {
077 this.settingName = reader.readElementValue();
078 }
079 }
080 } while (!reader.isEndElement(XmlNamespace.Autodiscover,
081 XmlElementNames.DomainSettingError));
082 }
083
084 /**
085 * Gets the error code.
086 *
087 * @return The error code.
088 */
089
090 public AutodiscoverErrorCode getErrorCode() {
091 return this.errorCode;
092 }
093
094 /**
095 * Gets the error message.
096 *
097 * @return The error message.
098 */
099
100 public String getErrorMessage() {
101 return this.errorMessage;
102 }
103
104 /**
105 * Gets the name of the setting.
106 *
107 * @return The name of the setting.
108 */
109 public String getSettingName() {
110 return this.settingName;
111 }
112
113 }