|
NIST-SIP: The Reference Implementation for JAIN-SIP 1.2 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use URI | |
---|---|
gov.nist.javax.sip.address | Implementation of the address package of the JAIN SIP API. |
gov.nist.javax.sip.header | Contains implementations of the SIP headers as defined in JAIN-SIP 1.2 and an implementation of the JAIN-SIP header factory. |
gov.nist.javax.sip.header.ims | NIST-SIP Specific support for IMS headers contributed by Jose Miguel Freitas (Aveiro University, Portugal) and Alexandre Miguel Silva Santos (PT Inovacau, Portugal). |
gov.nist.javax.sip.message | Class definitions for SIP messages and message factory. |
javax.sip.address | This package contains interfaces that represent the Addressing components of the SIP protocol. |
javax.sip.header | This package contains all the headers interfaces supported by this specification. |
javax.sip.message | This package contains the interfaces representing SIP messages. |
Uses of URI in gov.nist.javax.sip.address |
---|
Classes in gov.nist.javax.sip.address that implement URI | |
---|---|
class |
GenericURI
Implementation of the URI class. |
class |
SipUri
Implementation of the SipURI interface. |
class |
TelURLImpl
Implementation of the TelURL interface. |
Methods in gov.nist.javax.sip.address that return URI | |
---|---|
URI |
AddressFactoryImpl.createURI(String uri)
Creates a URI based on given URI string. |
URI |
AddressImpl.getURI()
Returns the URI address of this Address. |
Methods in gov.nist.javax.sip.address with parameters of type URI | |
---|---|
Address |
AddressFactoryImpl.createAddress(String displayName,
URI uri)
Creates an Address with the new display name and URI attribute values. |
Address |
AddressFactoryImpl.createAddress(URI uri)
|
void |
AddressImpl.setAddess(URI address)
Set the address field |
void |
AddressImpl.setURI(URI address)
Sets the URI address of this Address. |
Uses of URI in gov.nist.javax.sip.header |
---|
Methods in gov.nist.javax.sip.header that return URI | |
---|---|
URI |
AlertInfo.getAlertInfo()
Returns the AlertInfo value of this AlertInfoHeader. |
URI |
ErrorInfo.getErrorInfo()
Returns the ErrorInfo value of this ErrorInfoHeader. |
URI |
CallInfo.getInfo()
get the URI field |
URI |
AuthenticationHeader.getURI()
Returns the URI value of this WWWAuthenicateHeader, for example DigestURI. |
URI |
ProxyAuthenticate.getURI()
|
URI |
WWWAuthenticate.getURI()
|
Methods in gov.nist.javax.sip.header with parameters of type URI | |
---|---|
AlertInfoHeader |
HeaderFactoryImpl.createAlertInfoHeader(URI alertInfo)
Creates a new AlertInfoHeader based on the newly supplied alertInfo value. |
CallInfoHeader |
HeaderFactoryImpl.createCallInfoHeader(URI callInfo)
Creates a new CallInfoHeader based on the newly supplied callInfo value. |
ErrorInfoHeader |
HeaderFactoryImpl.createErrorInfoHeader(URI errorInfo)
Creates a new ErrorInfoHeader based on the newly supplied errorInfo value. |
void |
AlertInfo.setAlertInfo(URI uri)
Set the uri member |
void |
ErrorInfo.setErrorInfo(URI errorInfo)
Sets the ErrorInfo of the ErrorInfoHeader to the errorInfo parameter value. |
void |
CallInfo.setInfo(URI info)
set the URI field |
void |
AuthenticationHeader.setURI(URI uri)
Sets the URI of the WWWAuthenicateHeader to the uri parameter value. |
void |
ProxyAuthenticate.setURI(URI uri)
|
void |
WWWAuthenticate.setURI(URI uri)
|
Uses of URI in gov.nist.javax.sip.header.ims |
---|
Methods in gov.nist.javax.sip.header.ims that return URI | |
---|---|
URI |
PAssociatedURI.getAssociatedURI()
Get the address's URI |
URI |
PAssociatedURIHeader.getAssociatedURI()
Get the address's URI |
Methods in gov.nist.javax.sip.header.ims with parameters of type URI | |
---|---|
void |
PAssociatedURI.setAssociatedURI(URI associatedURI)
Set the URI on this address |
void |
PAssociatedURIHeader.setAssociatedURI(URI associatedURI)
Set the URI on this address |
Uses of URI in gov.nist.javax.sip.message |
---|
Methods in gov.nist.javax.sip.message that return URI | |
---|---|
URI |
SIPRequest.getRequestURI()
A conveniance function to access the Request URI. |
Methods in gov.nist.javax.sip.message with parameters of type URI | |
---|---|
Request |
MessageFactoryImpl.createRequest(URI requestURI,
String method,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards)
Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message. |
Request |
MessageFactoryImpl.createRequest(URI requestURI,
String method,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
byte[] content,
ContentTypeHeader contentType)
Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message with a body in the form of a byte array and body content type. |
Request |
MessageFactoryImpl.createRequest(URI requestURI,
String method,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
ContentTypeHeader contentType,
byte[] content)
Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message with a body in the form of a byte array and body content type. |
Request |
MessageFactoryImpl.createRequest(URI requestURI,
String method,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
ContentTypeHeader contentType,
Object content)
Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message with a body in the form of a Java object and the body content type. |
void |
SIPRequest.setRequestURI(URI uri)
Sets the RequestURI of Request. |
Uses of URI in javax.sip.address |
---|
Subinterfaces of URI in javax.sip.address | |
---|---|
interface |
SipURI
This class represents SIP URIs, that may have either a sip: or
sips: scheme. |
interface |
TelURL
This class represents Tel URLs, which are used for addressing. |
Methods in javax.sip.address that return URI | |
---|---|
URI |
AddressFactory.createURI(String uri)
Creates a URI based on given URI string. |
URI |
Address.getURI()
Returns the URI of this Address. |
Methods in javax.sip.address with parameters of type URI | |
---|---|
Address |
AddressFactory.createAddress(String displayName,
URI uri)
Creates an Address with the new display name and URI attribute values. |
Address |
AddressFactory.createAddress(URI uri)
Creates an Address with the new URI attribute value. |
void |
Address.setURI(URI uri)
Sets the URI of this Address. |
Uses of URI in javax.sip.header |
---|
Methods in javax.sip.header that return URI | |
---|---|
URI |
AlertInfoHeader.getAlertInfo()
Returns the AlertInfo value of this AlertInfoHeader. |
URI |
ErrorInfoHeader.getErrorInfo()
Returns the ErrorInfo value of this ErrorInfoHeader. |
URI |
CallInfoHeader.getInfo()
Gets the URI that represents the location of the info of the caller or callee. |
URI |
AuthorizationHeader.getURI()
Returns the DigestURI value of this AuthorizationHeader. |
URI |
WWWAuthenticateHeader.getURI()
Deprecated. Since v1.2. URI is not a supported parameter for this header. This method should return null. |
Methods in javax.sip.header with parameters of type URI | |
---|---|
AlertInfoHeader |
HeaderFactory.createAlertInfoHeader(URI alertInfo)
Creates a new AlertInfoHeader based on the newly supplied alertInfo value. |
CallInfoHeader |
HeaderFactory.createCallInfoHeader(URI callInfo)
Creates a new CallInfoHeader based on the newly supplied callInfo value. |
ErrorInfoHeader |
HeaderFactory.createErrorInfoHeader(URI errorInfo)
Creates a new ErrorInfoHeader based on the newly supplied errorInfo value. |
void |
AlertInfoHeader.setAlertInfo(URI alertInfo)
Sets the AlertInfo of the AlertInfoHeader to the alertInfo parameter value. |
void |
ErrorInfoHeader.setErrorInfo(URI errorInfo)
Sets the ErrorInfo of the ErrorInfoHeader to the errorInfo parameter value. |
void |
CallInfoHeader.setInfo(URI info)
Sets the Information parameter of this CallInfoHeader. |
void |
AuthorizationHeader.setURI(URI uri)
Sets the URI of the AuthorizationHeader to the uri parameter value. |
void |
WWWAuthenticateHeader.setURI(URI uri)
Deprecated. Since v1.2. URI is not a supported parameter for this header. |
Uses of URI in javax.sip.message |
---|
Methods in javax.sip.message that return URI | |
---|---|
URI |
Request.getRequestURI()
Gets the URI Object identifying the request URI of this Request, which indicates the user or service to which this request is addressed. |
Methods in javax.sip.message with parameters of type URI | |
---|---|
Request |
MessageFactory.createRequest(URI requestURI,
String method,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards)
Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message. |
Request |
MessageFactory.createRequest(URI requestURI,
String method,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
ContentTypeHeader contentType,
byte[] content)
Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message with a body in the form of a byte array and body content type. |
Request |
MessageFactory.createRequest(URI requestURI,
String method,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
ContentTypeHeader contentType,
Object content)
Creates a new Request message of type specified by the method paramater, containing the URI of the Request, the mandatory headers of the message with a body in the form of a Java object and the body content type. |
void |
Request.setRequestURI(URI requestURI)
Sets the RequestURI of Request. |
|
NIST-SIP: The Reference Implementation for JAIN-SIP 1.2 | |||||||||
PREV NEXT | FRAMES NO FRAMES |