<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>ISPhoneLineList</title>
  <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_thread?p_l_id=&amp;threadId=4881711" />
  <subtitle>ISPhoneLineList</subtitle>
  <id>http://developer.cisco.com/c/message_boards/find_thread?p_l_id=&amp;threadId=4881711</id>
  <updated>2013-06-18T07:32:07Z</updated>
  <dc:date>2013-06-18T07:32:07Z</dc:date>
  <entry>
    <title>RE: ISPhoneLineList</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=9289438" />
    <author>
      <name>Raghavendra Gutty Veeranagappa</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=9289438</id>
    <updated>2012-12-12T10:59:31Z</updated>
    <published>2012-12-12T10:59:31Z</published>
    <summary type="html">Hi Frank,
your correct above sample code return one element, i will check and let you know.
Thanks,
Raghavendra</summary>
    <dc:creator>Raghavendra Gutty Veeranagappa</dc:creator>
    <dc:date>2012-12-12T10:59:31Z</dc:date>
  </entry>
  <entry>
    <title>RE: ISPhoneLineList</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=9278439" />
    <author>
      <name>Frank Bodiker Jr</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=9278439</id>
    <updated>2012-12-11T22:56:51Z</updated>
    <published>2012-12-11T22:56:51Z</published>
    <summary type="html">[color=#525252]Raghavendra,[/color]
[color=#525252]Konstantin is correct. the definition is broken in 1.0.2[/color]
[color=#525252]your codc example above is wrong, because only returns the first element, not all ExtMapStatus elements, as needed for all purposes.[/color]
[color=#525252]However, including both 1.0,1 and 1.0.2 jarfiles, one can have it working.[/color]
[color=#525252] [/color]
[color=#525252] [/color]
[color=#525252] [/color]</summary>
    <dc:creator>Frank Bodiker Jr</dc:creator>
    <dc:date>2012-12-11T22:56:51Z</dc:date>
  </entry>
  <entry>
    <title>RE: ISPhoneLineList</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4891888" />
    <author>
      <name>Raghavendra Gutty Veeranagappa</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4891888</id>
    <updated>2011-12-14T11:48:50Z</updated>
    <published>2011-12-14T11:48:50Z</published>
    <summary type="html">Hi Konstantin,

it is changed In 1.0.2  , please use below code to get the same result.

for (ISDevice a : response.getISDevices().getISDevice()){	
    ExtMapStatus b = a.getISPhoneLineList().getExtMapStatus();
    System.out.println(
		        "Ext ID: "+b.getExtId()+"  "+
		        "Ext Number: "+b.getExtNumber()+"  "+
		        "Ext Status: "+b.getExtStatus()+"  "+
		        "Line ID: "+b.getLineId()+"  "+
			"Line State : "+b.getLineState());
    }

Thanks,
Raghavendra</summary>
    <dc:creator>Raghavendra Gutty Veeranagappa</dc:creator>
    <dc:date>2011-12-14T11:48:50Z</dc:date>
  </entry>
  <entry>
    <title>RE: ISPhoneLineList</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4890124" />
    <author>
      <name>Konstantin Chrispens</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4890124</id>
    <updated>2011-12-14T10:10:26Z</updated>
    <published>2011-12-14T10:10:26Z</published>
    <summary type="html">This doesn't work with version 1.0.2 because here getExtMapStatus() does not return a list but one single ExtMapStatus object. But it works in version 1.0.1</summary>
    <dc:creator>Konstantin Chrispens</dc:creator>
    <dc:date>2011-12-14T10:10:26Z</dc:date>
  </entry>
  <entry>
    <title>RE: ISPhoneLineList</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4883167" />
    <author>
      <name>Yaw-Ming Chen</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4883167</id>
    <updated>2011-12-12T21:47:25Z</updated>
    <published>2011-12-12T21:47:25Z</published>
    <summary type="html">Hope the following sample helps

for (ExtMapStatus b: a.getISPhoneLineList().getExtMapStatus() ){
			        System.out.println(
			        "Ext ID: "+b.getExtId()+"  "+
			        "Ext Number: "+b.getExtNumber()+"  "+
			        "Ext Status: "+b.getExtStatus()+"  "+
			        "Ext ID: "+b.getLineId()+"  "+
					"Line State : "+b.getLineState());
			}</summary>
    <dc:creator>Yaw-Ming Chen</dc:creator>
    <dc:date>2011-12-12T21:47:25Z</dc:date>
  </entry>
  <entry>
    <title>ISPhoneLineList</title>
    <link rel="alternate" href="http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4881710" />
    <author>
      <name>Konstantin Chrispens</name>
    </author>
    <id>http://developer.cisco.com/c/message_boards/find_message?p_l_id=&amp;messageId=4881710</id>
    <updated>2011-12-12T16:57:30Z</updated>
    <published>2011-12-12T16:57:30Z</published>
    <summary type="html">Hi all,
 
The method getExtMapStatus() in the class ISPhoneLineList returns one instance of ExtMapStatus. Shouldn't it return an array of ExtMapStatus instances for devices with multiple lines?
 
 </summary>
    <dc:creator>Konstantin Chrispens</dc:creator>
    <dc:date>2011-12-12T16:57:30Z</dc:date>
  </entry>
</feed>

