Package | Description |
---|---|
javax.servlet.sip |
The javax.servlet.sip package is the API for the SIP Servlets developed under JSR 359, this v2.0 version updates v1.1 developed under JSR 289.
|
Modifier and Type | Method and Description |
---|---|
Address |
SipFactory.createAddress(String addr)
Returns a
Address corresponding to the specified
string. |
Parameterable |
SipFactory.createParameterable(String s)
Creates a new
Parameterable parsed from the specified
string. |
SipServletRequest |
SipFactory.createRequest(SipApplicationSession appSession,
String method,
String from,
String to)
Returns a new request object with the specified request method, From,
and To headers.
|
URI |
SipFactory.createURI(String uri)
Returns a
URI object corresponding to the specified
string, which should represent an escaped SIP, SIPS, or tel URI. |
Address |
SipServletMessage.getAddressHeader(String name)
Returns the value of the specified header as a
Address object. |
List<Address> |
SipServletMessage.getAddressHeaderList(String name)
Returns a
List of all Address
header field values for the specified header. |
ListIterator<Address> |
SipServletMessage.getAddressHeaders(String name)
Returns a
ListIterator over all Address
header field values for the specified header. |
Parameterable |
SipServletMessage.getParameterableHeader(String name)
Returns the value of the specified header field as a
Parameterable object. |
List<? extends Parameterable> |
SipServletMessage.getParameterableHeaderList(String name)
Returns a
List of all Parameterable
header field values for the specified header name. |
ListIterator<? extends Parameterable> |
SipServletMessage.getParameterableHeaders(String name)
Returns a
ListIterator over all Parameterable
header field values for the specified header name. |
Copyright © 1996-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.