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 024package microsoft.exchange.webservices.data.property.complex; 025 026import microsoft.exchange.webservices.data.attribute.EditorBrowsable; 027import microsoft.exchange.webservices.data.core.EwsServiceXmlReader; 028import microsoft.exchange.webservices.data.core.EwsServiceXmlWriter; 029import microsoft.exchange.webservices.data.core.XmlElementNames; 030import microsoft.exchange.webservices.data.core.enumeration.attribute.EditorBrowsableState; 031import microsoft.exchange.webservices.data.core.enumeration.property.PhoneNumberKey; 032import microsoft.exchange.webservices.data.core.exception.service.local.ServiceXmlSerializationException; 033 034/** 035 * Represents an entry of a PhoneNumberDictionary. 036 */ 037@EditorBrowsable(state = EditorBrowsableState.Never) 038public final class PhoneNumberEntry extends DictionaryEntryProperty<PhoneNumberKey> { 039 040 /** 041 * The phone number. 042 */ 043 private String phoneNumber; 044 045 /** 046 * Initializes a new instance of the "PhoneNumberEntry" class. 047 */ 048 protected PhoneNumberEntry() { 049 super(PhoneNumberKey.class); 050 } 051 052 /** 053 * Initializes a new instance of the <see cref="PhoneNumberEntry"/> class. 054 * 055 * @param key The key. 056 * @param phoneNumber The phone number. 057 */ 058 protected PhoneNumberEntry(PhoneNumberKey key, String phoneNumber) { 059 super(PhoneNumberKey.class, key); 060 this.phoneNumber = phoneNumber; 061 } 062 063 /** 064 * Reads the text value from XML. 065 * 066 * @param reader accepts EwsServiceXmlReader 067 * @throws Exception throws Exception 068 */ 069 @Override 070 public void readTextValueFromXml(EwsServiceXmlReader reader) 071 throws Exception { 072 this.phoneNumber = reader.readValue(); 073 } 074 075 /** 076 * Writes elements to XML. 077 * 078 * @param writer The writer. 079 * @throws ServiceXmlSerializationException the service xml serialization exception 080 */ 081 public void writeElementsToXml(EwsServiceXmlWriter writer) 082 throws ServiceXmlSerializationException { 083 writer.writeValue(this.phoneNumber, XmlElementNames.PhoneNumber); 084 } 085 086 /** 087 * Gets the phone number of the entry. 088 * 089 * @return the phone number 090 */ 091 public String getPhoneNumber() { 092 return this.phoneNumber; 093 } 094 095 /** 096 * Sets the phone number of the entry. 097 * 098 * @param value the new phone number 099 */ 100 public void setPhoneNumber(Object value) { 101 //this.canSetFieldValue((String) this.phoneNumber, value); 102 if (this.canSetFieldValue(this.phoneNumber, value)) { 103 this.phoneNumber = (String) value; 104 } 105 } 106}