-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathindex-all.html
2099 lines (2081 loc) · 202 KB
/
index-all.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.5.0_14) on Fri Jun 27 17:25:17 PDT 2008 -->
<TITLE>
Index (SIP Servlet API 1.1)
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="./stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="Index (SIP Servlet API 1.1)";
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="./help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="./index.html?index-all.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-all.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="./allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<A HREF="#_A_">A</A> <A HREF="#_B_">B</A> <A HREF="#_C_">C</A> <A HREF="#_D_">D</A> <A HREF="#_E_">E</A> <A HREF="#_G_">G</A> <A HREF="#_I_">I</A> <A HREF="#_J_">J</A> <A HREF="#_L_">L</A> <A HREF="#_N_">N</A> <A HREF="#_O_">O</A> <A HREF="#_P_">P</A> <A HREF="#_R_">R</A> <A HREF="#_S_">S</A> <A HREF="#_T_">T</A> <A HREF="#_U_">U</A> <A HREF="#_V_">V</A> <HR>
<A NAME="_A_"><!-- --></A><H2>
<B>A</B></H2>
<DL>
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#addAcceptLanguage(java.util.Locale)"><B>addAcceptLanguage(Locale)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Adds an acceptable <code>Locale</code> of this user agent.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#addAddressHeader(java.lang.String, javax.servlet.sip.Address, boolean)"><B>addAddressHeader(String, Address, boolean)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Adds the specified <code>Address</code> as a new value of the
named header field.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#addAuthHeader(javax.servlet.sip.SipServletResponse, javax.servlet.sip.AuthInfo)"><B>addAuthHeader(SipServletResponse, AuthInfo)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>This method allows the addition of the appropriate authentication header(s)
to the request that was challenged with a challenge response.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#addAuthHeader(javax.servlet.sip.SipServletResponse, java.lang.String, java.lang.String)"><B>addAuthHeader(SipServletResponse, String, String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>This method allows the addition of the appropriate authentication header(s)
to the request that was challenged with a challenge response without needing the
creation and/or maintenance of the <code>AuthInfo</code> object.
<DT><A HREF="./javax/servlet/sip/AuthInfo.html#addAuthInfo(int, java.lang.String, java.lang.String, java.lang.String)"><B>addAuthInfo(int, String, String, String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/AuthInfo.html" title="interface in javax.servlet.sip">AuthInfo</A>
<DD>Helper method to add authentication info into the AuthInfo object for
a challenge response of a specific type (401/407) and realm.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#addHeader(java.lang.String, java.lang.String)"><B>addHeader(String, String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Adds a header with the given name and value.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#addParameterableHeader(java.lang.String, javax.servlet.sip.Parameterable, boolean)"><B>addParameterableHeader(String, Parameterable, boolean)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Adds the specified <code>Parameterable</code> as a new value of the
named header field.
<DT><A HREF="./javax/servlet/sip/Address.html" title="interface in javax.servlet.sip"><B>Address</B></A> - Interface in <A HREF="./javax/servlet/sip/package-summary.html">javax.servlet.sip</A><DD>Represents SIP addresses as found, for example, in From, To, and
Contact headers.<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRouter.html#applicationDeployed(java.util.List)"><B>applicationDeployed(List<String>)</B></A> -
Method in interface javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRouter.html" title="interface in javax.servlet.sip.ar">SipApplicationRouter</A>
<DD>Container notifies application router that new applications are deployed.
<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRouter.html#applicationUndeployed(java.util.List)"><B>applicationUndeployed(List<String>)</B></A> -
Method in interface javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRouter.html" title="interface in javax.servlet.sip.ar">SipApplicationRouter</A>
<DD>Container notifies application router that some applications are
undeployed.
<DT><A HREF="./javax/servlet/sip/SipApplicationSessionAttributeListener.html#attributeAdded(javax.servlet.sip.SipApplicationSessionBindingEvent)"><B>attributeAdded(SipApplicationSessionBindingEvent)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSessionAttributeListener.html" title="interface in javax.servlet.sip">SipApplicationSessionAttributeListener</A>
<DD>Notification that an attribute has been added to an application session.
<DT><A HREF="./javax/servlet/sip/SipSessionAttributeListener.html#attributeAdded(javax.servlet.sip.SipSessionBindingEvent)"><B>attributeAdded(SipSessionBindingEvent)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSessionAttributeListener.html" title="interface in javax.servlet.sip">SipSessionAttributeListener</A>
<DD>Notification that an attribute has been added to a session.
<DT><A HREF="./javax/servlet/sip/SipApplicationSessionAttributeListener.html#attributeRemoved(javax.servlet.sip.SipApplicationSessionBindingEvent)"><B>attributeRemoved(SipApplicationSessionBindingEvent)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSessionAttributeListener.html" title="interface in javax.servlet.sip">SipApplicationSessionAttributeListener</A>
<DD>Notification that an attribute has been removed from an application session.
<DT><A HREF="./javax/servlet/sip/SipSessionAttributeListener.html#attributeRemoved(javax.servlet.sip.SipSessionBindingEvent)"><B>attributeRemoved(SipSessionBindingEvent)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSessionAttributeListener.html" title="interface in javax.servlet.sip">SipSessionAttributeListener</A>
<DD>Notification that an attribute has been removed from a session.
<DT><A HREF="./javax/servlet/sip/SipApplicationSessionAttributeListener.html#attributeReplaced(javax.servlet.sip.SipApplicationSessionBindingEvent)"><B>attributeReplaced(SipApplicationSessionBindingEvent)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSessionAttributeListener.html" title="interface in javax.servlet.sip">SipApplicationSessionAttributeListener</A>
<DD>Notification that an attribute has been replaced in an application session.
<DT><A HREF="./javax/servlet/sip/SipSessionAttributeListener.html#attributeReplaced(javax.servlet.sip.SipSessionBindingEvent)"><B>attributeReplaced(SipSessionBindingEvent)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSessionAttributeListener.html" title="interface in javax.servlet.sip">SipSessionAttributeListener</A>
<DD>Notification that an attribute has been replaced in a session.
<DT><A HREF="./javax/servlet/sip/AuthInfo.html" title="interface in javax.servlet.sip"><B>AuthInfo</B></A> - Interface in <A HREF="./javax/servlet/sip/package-summary.html">javax.servlet.sip</A><DD>This interface allows applications to set the authentication information on servlet
initiated requests that are challenged by a Proxy or UAS.</DL>
<HR>
<A NAME="_B_"><!-- --></A><H2>
<B>B</B></H2>
<DL>
<DT><A HREF="./javax/servlet/sip/B2buaHelper.html" title="interface in javax.servlet.sip"><B>B2buaHelper</B></A> - Interface in <A HREF="./javax/servlet/sip/package-summary.html">javax.servlet.sip</A><DD>Helper class providing support for B2BUA applications.</DL>
<HR>
<A NAME="_C_"><!-- --></A><H2>
<B>C</B></H2>
<DL>
<DT><A HREF="./javax/servlet/sip/Proxy.html#cancel()"><B>cancel()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Cancels this proxy transaction and any of its child branches if recursion
was enabled.
<DT><A HREF="./javax/servlet/sip/Proxy.html#cancel(java.lang.String[], int[], java.lang.String[])"><B>cancel(String[], int[], String[])</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>This overloaded method of <A HREF="./javax/servlet/sip/Proxy.html#cancel()"><CODE>Proxy.cancel()</CODE></A> provides a way to specify the
reason for cancelling this <code>Proxy</code> by including the appropriate
Reason headers [RFC 3326].
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#cancel()"><B>cancel()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>Cancels this branch and all the child branches if recursion is enabled and
sends a CANCEL to the proxied INVITEs.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#cancel(java.lang.String[], int[], java.lang.String[])"><B>cancel(String[], int[], String[])</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>This overloaded method of <A HREF="./javax/servlet/sip/ProxyBranch.html#cancel()"><CODE>ProxyBranch.cancel()</CODE></A> provides a way to specify the
reason for cancelling this branch by including the appropriate Reason headers [RFC 3326].
<DT><A HREF="./javax/servlet/sip/ServletTimer.html#cancel()"><B>cancel()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ServletTimer.html" title="interface in javax.servlet.sip">ServletTimer</A>
<DD>Cancels this timer.
<DT><A HREF="./javax/servlet/sip/Address.html#clone()"><B>clone()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Address.html" title="interface in javax.servlet.sip">Address</A>
<DD>Returns a clone of this <code>Address</code>.
<DT><A HREF="./javax/servlet/sip/Parameterable.html#clone()"><B>clone()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Parameterable.html" title="interface in javax.servlet.sip">Parameterable</A>
<DD>Returns a clone of this <code>Parameterable</code>.
<DT><A HREF="./javax/servlet/sip/URI.html#clone()"><B>clone()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/URI.html" title="interface in javax.servlet.sip">URI</A>
<DD>Returns a clone of this URI.
<DT><A HREF="./javax/servlet/sip/ConvergedHttpSession.html" title="interface in javax.servlet.sip"><B>ConvergedHttpSession</B></A> - Interface in <A HREF="./javax/servlet/sip/package-summary.html">javax.servlet.sip</A><DD>The ConvergedHttpSession class provides access to HttpSession related
functionality which is only present in a converged HTTP/SIP container.<DT><A HREF="./javax/servlet/sip/SipServletResponse.html#createAck()"><B>createAck()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletResponse.html" title="interface in javax.servlet.sip">SipServletResponse</A>
<DD>Returns an ACK request object corresponding to this response.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createAddress(java.lang.String)"><B>createAddress(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Returns a <code>Address</code> corresponding to the specified
string.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createAddress(javax.servlet.sip.URI)"><B>createAddress(URI)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Returns an <code>Address</code> with the specified URI and no
display name.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createAddress(javax.servlet.sip.URI, java.lang.String)"><B>createAddress(URI, String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Returns a new <code>Address</code> with the specified
<code>URI</code> and display name.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createApplicationSession()"><B>createApplicationSession()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Returns a new <code>SipApplicationSession</code>.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createApplicationSessionByKey(java.lang.String)"><B>createApplicationSessionByKey(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Returns a new <code>SipApplicationSession</code> identified by the specified
SipApplicationKey.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createAuthInfo()"><B>createAuthInfo()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Creates a new AuthInfo object that can be used to provide authentication
information on servlet initiated requests.
<DT><A HREF="./javax/servlet/sip/B2buaHelper.html#createCancel(javax.servlet.sip.SipSession)"><B>createCancel(SipSession)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/B2buaHelper.html" title="interface in javax.servlet.sip">B2buaHelper</A>
<DD>Creates a new CANCEL request to cancel the initial request sent on the other
leg.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#createCancel()"><B>createCancel()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Returns a CANCEL request object.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createParameterable(java.lang.String)"><B>createParameterable(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Creates a new <code>Parameterable</code> parsed from the specified
string.
<DT><A HREF="./javax/servlet/sip/SipServletResponse.html#createPrack()"><B>createPrack()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletResponse.html" title="interface in javax.servlet.sip">SipServletResponse</A>
<DD>Creates a PRACK request object corresponding to this response.
<DT><A HREF="./javax/servlet/sip/Proxy.html#createProxyBranches(java.util.List)"><B>createProxyBranches(List<? extends URI>)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Returns the list of <A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip"><CODE>ProxyBranch</CODE></A> objects given a set of targets.
<DT><A HREF="./javax/servlet/sip/B2buaHelper.html#createRequest(javax.servlet.sip.SipServletRequest, boolean, java.util.Map)"><B>createRequest(SipServletRequest, boolean, Map<String, List<String>>)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/B2buaHelper.html" title="interface in javax.servlet.sip">B2buaHelper</A>
<DD>Creates a new request object belonging to a new SipSession.
<DT><A HREF="./javax/servlet/sip/B2buaHelper.html#createRequest(javax.servlet.sip.SipServletRequest)"><B>createRequest(SipServletRequest)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/B2buaHelper.html" title="interface in javax.servlet.sip">B2buaHelper</A>
<DD>Creates a new request object belonging to a new SipSession.
<DT><A HREF="./javax/servlet/sip/B2buaHelper.html#createRequest(javax.servlet.sip.SipSession, javax.servlet.sip.SipServletRequest, java.util.Map)"><B>createRequest(SipSession, SipServletRequest, Map<String, List<String>>)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/B2buaHelper.html" title="interface in javax.servlet.sip">B2buaHelper</A>
<DD>Creates a new subsequent request based on the specified original
request.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createRequest(javax.servlet.sip.SipApplicationSession, java.lang.String, javax.servlet.sip.Address, javax.servlet.sip.Address)"><B>createRequest(SipApplicationSession, String, Address, Address)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Returns a new request object with the specified request method, From,
and To headers.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createRequest(javax.servlet.sip.SipApplicationSession, java.lang.String, javax.servlet.sip.URI, javax.servlet.sip.URI)"><B>createRequest(SipApplicationSession, String, URI, URI)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Returns a new request object with the specified request method, From,
and To headers.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createRequest(javax.servlet.sip.SipApplicationSession, java.lang.String, java.lang.String, java.lang.String)"><B>createRequest(SipApplicationSession, String, String, String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Returns a new request object with the specified request method, From,
and To headers.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createRequest(javax.servlet.sip.SipServletRequest, boolean)"><B>createRequest(SipServletRequest, boolean)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD><B>Deprecated.</B> <I>usage of this method is deprecated. Setting the sameCallId
flag to "true" actually breaks the provisions of [RFC 3261] where the
Call-ID value is to be unique accross dialogs.
Instead use a more general method defined on the B2buaHelper
<A HREF="./javax/servlet/sip/B2buaHelper.html#createRequest(javax.servlet.sip.SipServletRequest)"><CODE>B2buaHelper.createRequest(SipServletRequest)</CODE></A></I>
<DT><A HREF="./javax/servlet/sip/SipSession.html#createRequest(java.lang.String)"><B>createRequest(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns a new request object.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#createResponse(int)"><B>createResponse(int)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Creates a response for this request with the specifies status code.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#createResponse(int, java.lang.String)"><B>createResponse(int, String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Creates a response for this request with the specifies status code
and reason phrase.
<DT><A HREF="./javax/servlet/sip/B2buaHelper.html#createResponseToOriginalRequest(javax.servlet.sip.SipSession, int, java.lang.String)"><B>createResponseToOriginalRequest(SipSession, int, String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/B2buaHelper.html" title="interface in javax.servlet.sip">B2buaHelper</A>
<DD>The request that results in creation of a SipSession is termed as the
original request, a response to this original request can be created by
the application even if the request was committed and application does
not have a reference to this Request.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createSipURI(java.lang.String, java.lang.String)"><B>createSipURI(String, String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Constructs a <code>SipURI</code> with the specified user and host
components.
<DT><A HREF="./javax/servlet/sip/TimerService.html#createTimer(javax.servlet.sip.SipApplicationSession, long, boolean, java.io.Serializable)"><B>createTimer(SipApplicationSession, long, boolean, Serializable)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/TimerService.html" title="interface in javax.servlet.sip">TimerService</A>
<DD>Creates a one-time <code>ServletTimer</code> and schedules it to
expire after the specified delay.
<DT><A HREF="./javax/servlet/sip/TimerService.html#createTimer(javax.servlet.sip.SipApplicationSession, long, long, boolean, boolean, java.io.Serializable)"><B>createTimer(SipApplicationSession, long, long, boolean, boolean, Serializable)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/TimerService.html" title="interface in javax.servlet.sip">TimerService</A>
<DD>Creates a repeating <code>ServletTimer</code> and schedules it to
expire after the specified delay and then again at approximately
regular intervals.
<DT><A HREF="./javax/servlet/sip/SipFactory.html#createURI(java.lang.String)"><B>createURI(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipFactory.html" title="interface in javax.servlet.sip">SipFactory</A>
<DD>Returns a <code>URI</code> object corresponding to the specified
string, which should represent an escaped SIP, SIPS, or tel URI.
</DL>
<HR>
<A NAME="_D_"><!-- --></A><H2>
<B>D</B></H2>
<DL>
<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRouter.html#destroy()"><B>destroy()</B></A> -
Method in interface javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRouter.html" title="interface in javax.servlet.sip.ar">SipApplicationRouter</A>
<DD>Container calls this method when it finishes using this application
router.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doAck(javax.servlet.sip.SipServletRequest)"><B>doAck(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
ACK requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doBranchResponse(javax.servlet.sip.SipServletResponse)"><B>doBranchResponse(SipServletResponse)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server to handle intermediate final responses only if this
Servlet behaves as a proxy.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doBye(javax.servlet.sip.SipServletRequest)"><B>doBye(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
BYE requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doCancel(javax.servlet.sip.SipServletRequest)"><B>doCancel(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
CANCEL requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doErrorResponse(javax.servlet.sip.SipServletResponse)"><B>doErrorResponse(SipServletResponse)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the doResponse method) to handle incoming
4xx - 6xx class responses.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doInfo(javax.servlet.sip.SipServletRequest)"><B>doInfo(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
INFO requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doInvite(javax.servlet.sip.SipServletRequest)"><B>doInvite(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
INVITE requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doMessage(javax.servlet.sip.SipServletRequest)"><B>doMessage(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
MESSAGE requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doNotify(javax.servlet.sip.SipServletRequest)"><B>doNotify(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
NOTIFY requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doOptions(javax.servlet.sip.SipServletRequest)"><B>doOptions(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
OPTIONS requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doPrack(javax.servlet.sip.SipServletRequest)"><B>doPrack(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
PRACK requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doProvisionalResponse(javax.servlet.sip.SipServletResponse)"><B>doProvisionalResponse(SipServletResponse)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the doResponse method) to handle incoming
1xx class responses.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doPublish(javax.servlet.sip.SipServletRequest)"><B>doPublish(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
PUBLISH requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doRedirectResponse(javax.servlet.sip.SipServletResponse)"><B>doRedirectResponse(SipServletResponse)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server to notify the servlet of incoming 3xx class
responses.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doRefer(javax.servlet.sip.SipServletRequest)"><B>doRefer(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
REFER requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doRegister(javax.servlet.sip.SipServletRequest)"><B>doRegister(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
REGISTER requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doRequest(javax.servlet.sip.SipServletRequest)"><B>doRequest(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked to handle incoming requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doResponse(javax.servlet.sip.SipServletResponse)"><B>doResponse(SipServletResponse)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked to handle incoming responses.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doSubscribe(javax.servlet.sip.SipServletRequest)"><B>doSubscribe(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
SUBSCRIBE requests.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doSuccessResponse(javax.servlet.sip.SipServletResponse)"><B>doSuccessResponse(SipServletResponse)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the doResponse method) to handle incoming
2xx class responses.
<DT><A HREF="./javax/servlet/sip/SipServlet.html#doUpdate(javax.servlet.sip.SipServletRequest)"><B>doUpdate(SipServletRequest)</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServlet.html" title="class in javax.servlet.sip">SipServlet</A>
<DD>Invoked by the server (via the service method) to handle incoming
UPDATE requests.
</DL>
<HR>
<A NAME="_E_"><!-- --></A><H2>
<B>E</B></H2>
<DL>
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#encodeURI(javax.servlet.sip.URI)"><B>encodeURI(URI)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD><B>Deprecated.</B> <I>has potential to break application composition
instead of this use the SipApplicationKey mechanism
as described in section 15.11.2 in the SIP Servlet
specification document.</I>
<DT><A HREF="./javax/servlet/sip/ConvergedHttpSession.html#encodeURL(java.lang.String)"><B>encodeURL(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ConvergedHttpSession.html" title="interface in javax.servlet.sip">ConvergedHttpSession</A>
<DD>This method encodes the HTTP URL with the jsessionid.
<DT><A HREF="./javax/servlet/sip/ConvergedHttpSession.html#encodeURL(java.lang.String, java.lang.String)"><B>encodeURL(String, String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ConvergedHttpSession.html" title="interface in javax.servlet.sip">ConvergedHttpSession</A>
<DD>Converts the given relative path to an absolute URL by
prepending the contextPath for the current ServletContext, the given
scheme ("http" or "https"), and the host:port, and then encoding the
resulting URL with the jsessionid.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#encodeURL(java.net.URL)"><B>encodeURL(URL)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Encode specified URL to include the application session ID in a way
such that the parameter used to encode the application session ID
should be unique across implementations.
<DT><A HREF="./javax/servlet/sip/Address.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Address.html" title="interface in javax.servlet.sip">Address</A>
<DD>Compares the given Address with this one.
<DT><A HREF="./javax/servlet/sip/Parameterable.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Parameterable.html" title="interface in javax.servlet.sip">Parameterable</A>
<DD>Compares the given Parameterable with this one.
<DT><A HREF="./javax/servlet/sip/SipURI.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipURI.html" title="interface in javax.servlet.sip">SipURI</A>
<DD>Compares the given SipURI with this SipURI.
<DT><A HREF="./javax/servlet/sip/TelURL.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/TelURL.html" title="interface in javax.servlet.sip">TelURL</A>
<DD>Compares the given TelURL with this TelURL.
<DT><A HREF="./javax/servlet/sip/URI.html#equals(java.lang.Object)"><B>equals(Object)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/URI.html" title="interface in javax.servlet.sip">URI</A>
<DD>Compares the given URI with this URI.
</DL>
<HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getAcceptLanguage()"><B>getAcceptLanguage()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the preferred <code>Locale</code> that the UA originating
this message will accept content in, based on the Accept-Language
header.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getAcceptLanguages()"><B>getAcceptLanguages()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns an <code>Iterator</code> over <code>Locale</code> objects
indicating, in decreasing order starting with the preferred locale,
the locales that are acceptable to the sending UA based on the
Accept-Language header.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getAddressHeader(java.lang.String)"><B>getAddressHeader(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the value of the specified header as a
<code>Address</code> object.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getAddressHeaders(java.lang.String)"><B>getAddressHeaders(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns a <code>ListIterator</code> over all <code>Address</code>
header field values for the specified header.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getAddToPath()"><B>getAddToPath()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Returns true if subsequent invocations of <A HREF="./javax/servlet/sip/Proxy.html#proxyTo(javax.servlet.sip.URI)"><CODE>proxyTo(URI)</CODE></A> or <A HREF="./javax/servlet/sip/Proxy.html#startProxy()"><CODE>startProxy()</CODE></A> will add a Path header
to the proxied request, false otherwise.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#getAddToPath()"><B>getAddToPath()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>Returns true if subsequent invocations of
<A HREF="./javax/servlet/sip/Proxy.html#startProxy()"><CODE>startProxy()</CODE></A> will add a Path header
to the proxied request, false otherwise.
<DT><A HREF="./javax/servlet/sip/ar/SipTargetedRequestInfo.html#getApplicationName()"><B>getApplicationName()</B></A> -
Method in class javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipTargetedRequestInfo.html" title="class in javax.servlet.sip.ar">SipTargetedRequestInfo</A>
<DD>
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getApplicationName()"><B>getApplicationName()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns the name of the SIP application this <code>SipApplicationSession</code> is
associated with.
<DT><A HREF="./javax/servlet/sip/ConvergedHttpSession.html#getApplicationSession()"><B>getApplicationSession()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ConvergedHttpSession.html" title="interface in javax.servlet.sip">ConvergedHttpSession</A>
<DD>Returns the parent SipApplicationSession if it exists, if none exists
then a new one is created and returned after associating it with the
converged http session.
<DT><A HREF="./javax/servlet/sip/ServletTimer.html#getApplicationSession()"><B>getApplicationSession()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ServletTimer.html" title="interface in javax.servlet.sip">ServletTimer</A>
<DD>Returns the application session associated with this
<code>ServletTimer</code>.
<DT><A HREF="./javax/servlet/sip/SipApplicationSessionBindingEvent.html#getApplicationSession()"><B>getApplicationSession()</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSessionBindingEvent.html" title="class in javax.servlet.sip">SipApplicationSessionBindingEvent</A>
<DD>Returns the application session to or from which the object is bound or unbound.
<DT><A HREF="./javax/servlet/sip/SipApplicationSessionEvent.html#getApplicationSession()"><B>getApplicationSession()</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSessionEvent.html" title="class in javax.servlet.sip">SipApplicationSessionEvent</A>
<DD>Returns the expired session object.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getApplicationSession()"><B>getApplicationSession()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the application session to which this message belongs.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getApplicationSession(boolean)"><B>getApplicationSession(boolean)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the app session to which this message belongs.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getApplicationSession()"><B>getApplicationSession()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns the application session with which this <code>SipSession</code>
is associated.
<DT><A HREF="./javax/servlet/sip/SipSessionsUtil.html#getApplicationSessionById(java.lang.String)"><B>getApplicationSessionById(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSessionsUtil.html" title="interface in javax.servlet.sip">SipSessionsUtil</A>
<DD>Returns the SipApplicationSession for a given applicationSessionId.
<DT><A HREF="./javax/servlet/sip/SipSessionsUtil.html#getApplicationSessionByKey(java.lang.String, boolean)"><B>getApplicationSessionByKey(String, boolean)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSessionsUtil.html" title="interface in javax.servlet.sip">SipSessionsUtil</A>
<DD>Returns the SipApplicationSession for a given session <code>applicationSessionKey</code>.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getAttribute(java.lang.String)"><B>getAttribute(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns the object bound with the specified name in this session,
or null if no object is bound under the name.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getAttribute(java.lang.String)"><B>getAttribute(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the value of the named attribute as an Object, or null if
no attribute of the given name exists.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getAttribute(java.lang.String)"><B>getAttribute(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns the object bound with the specified name in this session,
or null if no object is bound under the name.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getAttributeNames()"><B>getAttributeNames()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns an <code>Iterator</code> over the <code>String</code>
objects containing the names of all the objects bound to this session.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getAttributeNames()"><B>getAttributeNames()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns an <code>Enumeration</code> containing the names of the
attributes available to this message object.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getAttributeNames()"><B>getAttributeNames()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns an <code>Enumeration</code> over the <code>String</code>
objects containing the names of all the objects bound to this session.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getB2buaHelper()"><B>getB2buaHelper()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Returns the B2buaHelper associated with this request.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getCallId()"><B>getCallId()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the value of the Call-ID header in this
<code>SipServletMessage</code>.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getCallId()"><B>getCallId()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns the Call-ID for this <code>SipSession</code>.
<DT><A HREF="./javax/servlet/sip/SipServletResponse.html#getChallengeRealms()"><B>getChallengeRealms()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletResponse.html" title="interface in javax.servlet.sip">SipServletResponse</A>
<DD>Returns an <code>Iterator</code> over all the realms associated with this
challenge response.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getCharacterEncoding()"><B>getCharacterEncoding()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the name of the charset used for the MIME body sent in
this message.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getContent()"><B>getContent()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the content as a Java object.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getContentLanguage()"><B>getContentLanguage()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the locale of this message.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getContentLength()"><B>getContentLength()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the length in number of bytes of the content part of this
message.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getContentType()"><B>getContentType()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the value of the Content-Type header field.
<DT><A HREF="./javax/servlet/sip/SipSessionsUtil.html#getCorrespondingSipSession(javax.servlet.sip.SipSession, java.lang.String)"><B>getCorrespondingSipSession(SipSession, String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSessionsUtil.html" title="interface in javax.servlet.sip">SipSessionsUtil</A>
<DD>Returns related SipSession.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getCreationTime()"><B>getCreationTime()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns the time when this session was created, measured in
milliseconds since midnight January 1, 1970 GMT.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getCreationTime()"><B>getCreationTime()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns the time when this session was created, measured in
milliseconds since midnight January 1, 1970 GMT.
<DT><A HREF="./javax/servlet/sip/Address.html#getDisplayName()"><B>getDisplayName()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Address.html" title="interface in javax.servlet.sip">Address</A>
<DD>Returns the display name of this <code>Address</code>.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getExpirationTime()"><B>getExpirationTime()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns the time in future when this SipApplicationSession will expire.
<DT><A HREF="./javax/servlet/sip/Address.html#getExpires()"><B>getExpires()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Address.html" title="interface in javax.servlet.sip">Address</A>
<DD>Returns the value of the "expires" parameter as delta-seconds.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getExpires()"><B>getExpires()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the value of the Expires header.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getFrom()"><B>getFrom()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the value of the From header.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getHeader(java.lang.String)"><B>getHeader(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the value of the specified header as a
<code>String</code>.
<DT><A HREF="./javax/servlet/sip/SipURI.html#getHeader(java.lang.String)"><B>getHeader(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipURI.html" title="interface in javax.servlet.sip">SipURI</A>
<DD>Returns the value of the specified header.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getHeaderForm()"><B>getHeaderForm()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getHeaderNames()"><B>getHeaderNames()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns an <code>Iterator</code> over all the header names this
message contains.
<DT><A HREF="./javax/servlet/sip/SipURI.html#getHeaderNames()"><B>getHeaderNames()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipURI.html" title="interface in javax.servlet.sip">SipURI</A>
<DD>Returns an <code>Iterator</code> over the names of all headers
present in this <code>SipURI</code>.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getHeaders(java.lang.String)"><B>getHeaders(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns all the values of the specified header as a
ListIterator over a number of <code>String</code> objects.
<DT><A HREF="./javax/servlet/sip/SipURI.html#getHost()"><B>getHost()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipURI.html" title="interface in javax.servlet.sip">SipURI</A>
<DD>Returns the host part of this <code>SipURI</code>.
<DT><A HREF="./javax/servlet/sip/ServletTimer.html#getId()"><B>getId()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ServletTimer.html" title="interface in javax.servlet.sip">ServletTimer</A>
<DD>Returns a string containing the unique identifier assigned to
this timer task.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getId()"><B>getId()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns a string containing the unique identifier assigned to
this session.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getId()"><B>getId()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns a string containing the unique identifier assigned to
this session.
<DT><A HREF="./javax/servlet/sip/ServletTimer.html#getInfo()"><B>getInfo()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ServletTimer.html" title="interface in javax.servlet.sip">ServletTimer</A>
<DD>Get the information associated with the timer at the time of
creation.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getInitialPoppedRoute()"><B>getInitialPoppedRoute()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>If a top route header had been removed by the container upon
initially receiving this request, then this method can be used to
retrieve it.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getInitialRemoteAddr()"><B>getInitialRemoteAddr()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the IP address of the upstream/downstream hop from which
this message was initially received by the container.<br/>
Unlike <code>getRemoteAddr()</code>, this method
returns the same value regardless of which application invokes it
in the same application composition chain of a specific application router.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getInitialRemotePort()"><B>getInitialRemotePort()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the port number of the upstream/downstream hop from which
this message initially received by the container.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getInitialTransport()"><B>getInitialTransport()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the name of the protocol with which this message was initially
received by the container,
e.g.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getInputStream()"><B>getInputStream()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Always returns null.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getInvalidateWhenReady()"><B>getInvalidateWhenReady()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns true if the container will notify the application when this
<code>SipApplicationSession</code> is in the ready-to-invalidate state.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getInvalidateWhenReady()"><B>getInvalidateWhenReady()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns true if the container will notify the application when this
<code>SipSession</code> is in the ready-to-invalidate state.
<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRoutingRegion.html#getLabel()"><B>getLabel()</B></A> -
Method in class javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRoutingRegion.html" title="class in javax.servlet.sip.ar">SipApplicationRoutingRegion</A>
<DD>Each routing region has a String label.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getLastAccessedTime()"><B>getLastAccessedTime()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns the last time an event occurred on this application session.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getLastAccessedTime()"><B>getLastAccessedTime()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns the last time the client sent a request associated with this
session, as the number of milliseconds since midnight January 1,
1970 GMT.
<DT><A HREF="./javax/servlet/sip/B2buaHelper.html#getLinkedSession(javax.servlet.sip.SipSession)"><B>getLinkedSession(SipSession)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/B2buaHelper.html" title="interface in javax.servlet.sip">B2buaHelper</A>
<DD>Returns the other SipSession that is linked to the specified SipSession,
or null if none.
<DT><A HREF="./javax/servlet/sip/B2buaHelper.html#getLinkedSipServletRequest(javax.servlet.sip.SipServletRequest)"><B>getLinkedSipServletRequest(SipServletRequest)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/B2buaHelper.html" title="interface in javax.servlet.sip">B2buaHelper</A>
<DD>If a new request is created based on an existing one with the
link argument true using <A HREF="./javax/servlet/sip/B2buaHelper.html#createRequest(javax.servlet.sip.SipServletRequest, boolean, java.util.Map)"><CODE>B2buaHelper.createRequest(SipServletRequest, boolean, java.util.Map)</CODE></A>
or using <A HREF="./javax/servlet/sip/B2buaHelper.html#createRequest(javax.servlet.sip.SipSession, javax.servlet.sip.SipServletRequest, java.util.Map)"><CODE>B2buaHelper.createRequest(SipSession, SipServletRequest, java.util.Map)</CODE></A>
the new request gets implicitly linked with the original request.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getLocalAddr()"><B>getLocalAddr()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the IP address of the interface this message was received on.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getLocalParty()"><B>getLocalParty()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns the <code>Address</code> identifying the local party.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getLocalPort()"><B>getLocalPort()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the local port this message was received on.
<DT><A HREF="./javax/servlet/sip/SipURI.html#getLrParam()"><B>getLrParam()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipURI.html" title="interface in javax.servlet.sip">SipURI</A>
<DD>Returns true if the "lr" flag parameter is set, and false
otherwise.
<DT><A HREF="./javax/servlet/sip/SipURI.html#getMAddrParam()"><B>getMAddrParam()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipURI.html" title="interface in javax.servlet.sip">SipURI</A>
<DD>Returns the value of the "maddr" parameter, or null if this
is not set.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getMaxForwards()"><B>getMaxForwards()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Returns the value of the Max-Forwards header.
<DT><A HREF="./javax/servlet/sip/Rel100Exception.html#getMessage()"><B>getMessage()</B></A> -
Method in exception javax.servlet.sip.<A HREF="./javax/servlet/sip/Rel100Exception.html" title="class in javax.servlet.sip">Rel100Exception</A>
<DD>Returns message phrase suitable for the reason integer code.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getMethod()"><B>getMethod()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the SIP method of this message.
<DT><A HREF="./javax/servlet/sip/SipURI.html#getMethodParam()"><B>getMethodParam()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipURI.html" title="interface in javax.servlet.sip">SipURI</A>
<DD>Returns the value of the "method" parameter, or null if this
is not set.
<DT><A HREF="./javax/servlet/sip/SipApplicationSessionBindingEvent.html#getName()"><B>getName()</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSessionBindingEvent.html" title="class in javax.servlet.sip">SipApplicationSessionBindingEvent</A>
<DD>Returns the name with which the object is bound to or unbound from
the application session.
<DT><A HREF="./javax/servlet/sip/SipSessionBindingEvent.html#getName()"><B>getName()</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSessionBindingEvent.html" title="class in javax.servlet.sip">SipSessionBindingEvent</A>
<DD>Returns the name with which the object is bound to or unbound from
the session.
<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRouter.html#getNextApplication(javax.servlet.sip.SipServletRequest, javax.servlet.sip.ar.SipApplicationRoutingRegion, javax.servlet.sip.ar.SipApplicationRoutingDirective, javax.servlet.sip.ar.SipTargetedRequestInfo, java.io.Serializable)"><B>getNextApplication(SipServletRequest, SipApplicationRoutingRegion, SipApplicationRoutingDirective, SipTargetedRequestInfo, Serializable)</B></A> -
Method in interface javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRouter.html" title="interface in javax.servlet.sip.ar">SipApplicationRouter</A>
<DD>This method is called by the container when a servlet sends or proxies
an initial SipServletRequest.
<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html#getNextApplicationName()"><B>getNextApplicationName()</B></A> -
Method in class javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html" title="class in javax.servlet.sip.ar">SipApplicationRouterInfo</A>
<DD>
<DT><A HREF="./javax/servlet/sip/Proxy.html#getNoCancel()"><B>getNoCancel()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Returns <code>true</code> if the proxy will not cancel outstanding
branches upon receiving the first 2xx INVITE response as in RFC 3841
<DT><A HREF="./javax/servlet/sip/Proxy.html#getOriginalRequest()"><B>getOriginalRequest()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Returns the request received from the upstream caller.
<DT><A HREF="./javax/servlet/sip/SipServletResponse.html#getOutputStream()"><B>getOutputStream()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletResponse.html" title="interface in javax.servlet.sip">SipServletResponse</A>
<DD>Always returns null.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getParallel()"><B>getParallel()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Returns true if this proxy object is set to proxy in parallel, or
false if it is set to proxy sequentially.
<DT><A HREF="./javax/servlet/sip/Parameterable.html#getParameter(java.lang.String)"><B>getParameter(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Parameterable.html" title="interface in javax.servlet.sip">Parameterable</A>
<DD>Returns the value of the named parameter, or null if it is not
set.
<DT><A HREF="./javax/servlet/sip/URI.html#getParameter(java.lang.String)"><B>getParameter(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/URI.html" title="interface in javax.servlet.sip">URI</A>
<DD>Returns the value of the named parameter, or null if it is not
set.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getParameterableHeader(java.lang.String)"><B>getParameterableHeader(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the value of the specified header field as a
<code>Parameterable</code> object.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getParameterableHeaders(java.lang.String)"><B>getParameterableHeaders(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns a <code>ListIterator</code> over all <code>Parameterable</code>
header field values for the specified header name.
<DT><A HREF="./javax/servlet/sip/Parameterable.html#getParameterNames()"><B>getParameterNames()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Parameterable.html" title="interface in javax.servlet.sip">Parameterable</A>
<DD>Returns an <code>Iterator</code> of the names of all parameters
contained in this object.
<DT><A HREF="./javax/servlet/sip/URI.html#getParameterNames()"><B>getParameterNames()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/URI.html" title="interface in javax.servlet.sip">URI</A>
<DD>Returns an <code>Iterator</code> over the names of all parameters
present in this <code>URI</code>.
<DT><A HREF="./javax/servlet/sip/Parameterable.html#getParameters()"><B>getParameters()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Parameterable.html" title="interface in javax.servlet.sip">Parameterable</A>
<DD>Returns a Collection view of the parameter name-value mappings
contained in this Parameterable.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getPathURI()"><B>getPathURI()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Returns a <code>SipURI</code> that the application can use to
add parameters to the Path header.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#getPathURI()"><B>getPathURI()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>Returns a <code>SipURI</code> that the application can use to
add parameters to the Path header.
<DT><A HREF="./javax/servlet/sip/B2buaHelper.html#getPendingMessages(javax.servlet.sip.SipSession, javax.servlet.sip.UAMode)"><B>getPendingMessages(SipSession, UAMode)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/B2buaHelper.html" title="interface in javax.servlet.sip">B2buaHelper</A>
<DD>For the specified SipSession, returns a List of all uncommitted messages
in the order of increasing CSeq number for the given mode of the session.
<DT><A HREF="./javax/servlet/sip/TelURL.html#getPhoneContext()"><B>getPhoneContext()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/TelURL.html" title="interface in javax.servlet.sip">TelURL</A>
<DD>Returns the phone context of this <code>TelURL</code> for local numbers or
<code>null</code> if the phone number is global
<DT><A HREF="./javax/servlet/sip/TelURL.html#getPhoneNumber()"><B>getPhoneNumber()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/TelURL.html" title="interface in javax.servlet.sip">TelURL</A>
<DD>Returns the phone number of this <code>TelURL</code>.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getPoppedRoute()"><B>getPoppedRoute()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>If a top route header had been removed by the container upon receiving
this request, then this method can be used to retrieve it.
<DT><A HREF="./javax/servlet/sip/SipURI.html#getPort()"><B>getPort()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipURI.html" title="interface in javax.servlet.sip">SipURI</A>
<DD>Returns the port number of this <code>SipURI</code>,
or -1 if this is not set.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getProtocol()"><B>getProtocol()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the name and version of the protocol of this message.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#getProxy()"><B>getProxy()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getProxy()"><B>getProxy()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Returns the <code>Proxy</code> object associated with this request.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getProxy(boolean)"><B>getProxy(boolean)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Returns the <code>Proxy</code> object associated with this request.
<DT><A HREF="./javax/servlet/sip/SipServletResponse.html#getProxy()"><B>getProxy()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletResponse.html" title="interface in javax.servlet.sip">SipServletResponse</A>
<DD>Returns the <code>Proxy</code> object associated with the
transaction of this SIP response object.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getProxyBranch(javax.servlet.sip.URI)"><B>getProxyBranch(URI)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Any branch has a primary URI associated with it, using which it was
created.
<DT><A HREF="./javax/servlet/sip/SipServletResponse.html#getProxyBranch()"><B>getProxyBranch()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletResponse.html" title="interface in javax.servlet.sip">SipServletResponse</A>
<DD>Retruns the <code>ProxyBranch</code> object associated with the transaction
of this SIP response object.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getProxyBranches()"><B>getProxyBranches()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>More than one branches are associated with a proxy when <A HREF="./javax/servlet/sip/Proxy.html#proxyTo(java.util.List)"><CODE>Proxy.proxyTo(List)</CODE></A> or <A HREF="./javax/servlet/sip/Proxy.html#createProxyBranches(java.util.List)"><CODE>Proxy.createProxyBranches(List)</CODE></A>
is used.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#getProxyBranchTimeout()"><B>getProxyBranchTimeout()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>Returns the current value of the search timeout associated
with this <code>ProxyBranch</code> object.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getProxyTimeout()"><B>getProxyTimeout()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>The current value of the overall proxy timeout value.
<DT><A HREF="./javax/servlet/sip/Address.html#getQ()"><B>getQ()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Address.html" title="interface in javax.servlet.sip">Address</A>
<DD>Returns the value of the "q" parameter of this <code>Address</code>.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getRawContent()"><B>getRawContent()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns message content as a byte array.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getReader()"><B>getReader()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Always returns null.
<DT><A HREF="./javax/servlet/sip/Rel100Exception.html#getReason()"><B>getReason()</B></A> -
Method in exception javax.servlet.sip.<A HREF="./javax/servlet/sip/Rel100Exception.html" title="class in javax.servlet.sip">Rel100Exception</A>
<DD>Returns an integer code indicating the specific reason why this
exception was thrown.
<DT><A HREF="./javax/servlet/sip/SipServletResponse.html#getReasonPhrase()"><B>getReasonPhrase()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletResponse.html" title="interface in javax.servlet.sip">SipServletResponse</A>
<DD>Returns the reason phrase for this response object.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getRecordRoute()"><B>getRecordRoute()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Returns true if subsequent invocations of <A HREF="./javax/servlet/sip/Proxy.html#proxyTo(javax.servlet.sip.URI)"><CODE>proxyTo(URI)</CODE></A>
will add a Record-Route header to the proxied request, false otherwise.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#getRecordRoute()"><B>getRecordRoute()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>Returns true if subsequent invocations of <A HREF="./javax/servlet/sip/Proxy.html#startProxy()"><CODE>proxyTo(URI)</CODE></A>
will add a Record-Route header to the proxied request, false otherwise.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getRecordRouteURI()"><B>getRecordRouteURI()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Returns a <code>SipURI</code> that the application can use to
add parameters to the Record-Route header.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#getRecordRouteURI()"><B>getRecordRouteURI()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>Returns a <code>SipURI</code> that the application can use to
add parameters to the Record-Route header.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getRecurse()"><B>getRecurse()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Returns true if this proxy object is set to recurse, or false otherwise.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#getRecurse()"><B>getRecurse()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>Returns true if this proxy branch object is set to recurse, or false otherwise.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#getRecursedProxyBranches()"><B>getRecursedProxyBranches()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>Receipt of a 3xx class redirect response on a branch can result in recursed branches
if the proxy or the branch has recursion enabled.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getRegion()"><B>getRegion()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>This method allows the application to obtain the region it was
invoked in for this SipServletRequest.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getRegion()"><B>getRegion()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>This method allows the application to obtain the region it was
invoked in for this SipSession.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getRemoteAddr()"><B>getRemoteAddr()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the IP address of the next upstream/downstream hop from which
this message was received.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getRemoteParty()"><B>getRemoteParty()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns the <code>Address</code> identifying the remote party.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getRemotePort()"><B>getRemotePort()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the port number of the next upstream/downstream hop from which
this message was received.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getRemoteUser()"><B>getRemoteUser()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the login of the user sending this message, if the
user has been authenticated, or null if the user has not been
authenticated.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#getRequest()"><B>getRequest()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>Returns the request associated with this branch.
<DT><A HREF="./javax/servlet/sip/SipErrorEvent.html#getRequest()"><B>getRequest()</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipErrorEvent.html" title="class in javax.servlet.sip">SipErrorEvent</A>
<DD>Returns the request object associated with this
<code>SipErrorEvent</code>.
<DT><A HREF="./javax/servlet/sip/SipServletResponse.html#getRequest()"><B>getRequest()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletResponse.html" title="interface in javax.servlet.sip">SipServletResponse</A>
<DD>Returns the request associated with this response.
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getRequestURI()"><B>getRequestURI()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Returns the request URI of this request.
<DT><A HREF="./javax/servlet/sip/ProxyBranch.html#getResponse()"><B>getResponse()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ProxyBranch.html" title="interface in javax.servlet.sip">ProxyBranch</A>
<DD>Returns the <em>last</em> response received on this branch.
<DT><A HREF="./javax/servlet/sip/SipErrorEvent.html#getResponse()"><B>getResponse()</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipErrorEvent.html" title="class in javax.servlet.sip">SipErrorEvent</A>
<DD>Returns the response object associated with this
<code>SipErrorEvent</code>.
<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html#getRouteModifier()"><B>getRouteModifier()</B></A> -
Method in class javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html" title="class in javax.servlet.sip.ar">SipApplicationRouterInfo</A>
<DD>
<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html#getRoutes()"><B>getRoutes()</B></A> -
Method in class javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html" title="class in javax.servlet.sip.ar">SipApplicationRouterInfo</A>
<DD>An array of SIP routes of the same type (internal or external).
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getRoutingDirective()"><B>getRoutingDirective()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Returns the <code>SipApplicationRoutingDirective</code> associated with
this request.
<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html#getRoutingRegion()"><B>getRoutingRegion()</B></A> -
Method in class javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html" title="class in javax.servlet.sip.ar">SipApplicationRouterInfo</A>
<DD>
<DT><A HREF="./javax/servlet/sip/URI.html#getScheme()"><B>getScheme()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/URI.html" title="interface in javax.servlet.sip">URI</A>
<DD>Returns the scheme of this <code>URI</code>,
for example "sip", "sips" or "tel".
<DT><A HREF="./javax/servlet/sip/Proxy.html#getSequentialSearchTimeout()"><B>getSequentialSearchTimeout()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD><B>Deprecated.</B> <I>use a more general purpose <A HREF="./javax/servlet/sip/Proxy.html#getProxyTimeout()"><CODE>Proxy.getProxyTimeout()</CODE></A></I>
<DT><A HREF="./javax/servlet/sip/SipSession.html#getServletContext()"><B>getServletContext()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns the ServletContext to which this session belongs.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getSession(java.lang.String, javax.servlet.sip.SipApplicationSession.Protocol)"><B>getSession(String, SipApplicationSession.Protocol)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns the session object with the specified id associated with the
specified protocol belonging to this application session, or null if not
found.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getSession()"><B>getSession()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the <code>SipSession</code> to which this message belongs.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getSession(boolean)"><B>getSession(boolean)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the <code>SipSession</code> to which this message belongs.
<DT><A HREF="./javax/servlet/sip/SipSessionBindingEvent.html#getSession()"><B>getSession()</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSessionBindingEvent.html" title="class in javax.servlet.sip">SipSessionBindingEvent</A>
<DD>Returns the session to or from which the object is bound or unbound.
<DT><A HREF="./javax/servlet/sip/SipSessionEvent.html#getSession()"><B>getSession()</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSessionEvent.html" title="class in javax.servlet.sip">SipSessionEvent</A>
<DD>Returns the session that changed.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getSessions()"><B>getSessions()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns an <code>Iterator</code> over all valid "protocol" sessions
associated with this application session.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getSessions(java.lang.String)"><B>getSessions(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns an <code>Iterator</code> over all valid "protocol" session objects
associated with the specified protocol associated with this application
session.
<DT><A HREF="./javax/servlet/sip/ar/spi/SipApplicationRouterProvider.html#getSipApplicationRouter()"><B>getSipApplicationRouter()</B></A> -
Method in class javax.servlet.sip.ar.spi.<A HREF="./javax/servlet/sip/ar/spi/SipApplicationRouterProvider.html" title="class in javax.servlet.sip.ar.spi">SipApplicationRouterProvider</A>
<DD>Retrieve an instance of the application router created by
this provider
<DT><A HREF="./javax/servlet/sip/SipServletContextEvent.html#getSipServlet()"><B>getSipServlet()</B></A> -
Method in class javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletContextEvent.html" title="class in javax.servlet.sip">SipServletContextEvent</A>
<DD>Returns the servlet associated with the event
<code>SipServletContextEvent</code>.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getSipSession(java.lang.String)"><B>getSipSession(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns the <code>SipSession</code> with the specified id belonging
to this application session, or null if not found.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getState()"><B>getState()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns the current SIP dialog state, which is one of INITIAL, EARLY,
CONFIRMED, or TERMINATED.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getStateful()"><B>getStateful()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD><B>Deprecated.</B> <I>stateless proxy is no longer supported</I>
<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html#getStateInfo()"><B>getStateInfo()</B></A> -
Method in class javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html" title="class in javax.servlet.sip.ar">SipApplicationRouterInfo</A>
<DD>
<DT><A HREF="./javax/servlet/sip/SipServletResponse.html#getStatus()"><B>getStatus()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletResponse.html" title="interface in javax.servlet.sip">SipServletResponse</A>
<DD>Returns the status code of this response object.
<DT><A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html#getSubscriberURI()"><B>getSubscriberURI()</B></A> -
Method in class javax.servlet.sip.ar.<A HREF="./javax/servlet/sip/ar/SipApplicationRouterInfo.html" title="class in javax.servlet.sip.ar">SipApplicationRouterInfo</A>
<DD>
<DT><A HREF="./javax/servlet/sip/SipServletRequest.html#getSubscriberURI()"><B>getSubscriberURI()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletRequest.html" title="interface in javax.servlet.sip">SipServletRequest</A>
<DD>Returns the URI of the subscriber for which this application
is invoked to serve.
<DT><A HREF="./javax/servlet/sip/SipSession.html#getSubscriberURI()"><B>getSubscriberURI()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipSession.html" title="interface in javax.servlet.sip">SipSession</A>
<DD>Returns the URI of the subscriber for which this application
is invoked to serve.
<DT><A HREF="./javax/servlet/sip/Proxy.html#getSupervised()"><B>getSupervised()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/Proxy.html" title="interface in javax.servlet.sip">Proxy</A>
<DD>Returns true if the controlling servlet will be invoked on incoming
responses for this proxying operation, and false otherwise.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getTimer(java.lang.String)"><B>getTimer(String)</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns the active timer identified by a specific id that is associated
with this application session.
<DT><A HREF="./javax/servlet/sip/ServletTimer.html#getTimeRemaining()"><B>getTimeRemaining()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/ServletTimer.html" title="interface in javax.servlet.sip">ServletTimer</A>
<DD>Get the number of milliseconds that will elapse before the next scheduled
timer expiration.
<DT><A HREF="./javax/servlet/sip/SipApplicationSession.html#getTimers()"><B>getTimers()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipApplicationSession.html" title="interface in javax.servlet.sip">SipApplicationSession</A>
<DD>Returns all active timers associated with this application session.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getTo()"><B>getTo()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the value of the To header.
<DT><A HREF="./javax/servlet/sip/SipServletMessage.html#getTransport()"><B>getTransport()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipServletMessage.html" title="interface in javax.servlet.sip">SipServletMessage</A>
<DD>Returns the name of the protocol with which this message was received,
e.g.
<DT><A HREF="./javax/servlet/sip/SipURI.html#getTransportParam()"><B>getTransportParam()</B></A> -
Method in interface javax.servlet.sip.<A HREF="./javax/servlet/sip/SipURI.html" title="interface in javax.servlet.sip">SipURI</A>
<DD>Returns the value of the "transport" parameter, or null if this