Package | Description |
---|---|
examples.ims | |
examples.nistgoodies.messagevalve | |
gov.nist.javax.sip |
This is the root of the JAIN implementation of SIP.
|
gov.nist.javax.sip.clientauthutils |
This package contains a set of utilities for client side Authentication Challenge handling.
|
gov.nist.javax.sip.message |
Class definitions for SIP messages and message factory.
|
gov.nist.javax.sip.stack |
This package implements the main protocol abstractions that are defined by the SIP RFC 3261.
|
javax.sip |
This package contains the main interfaces that model the architecture
from both an application developer and a stack vendor view.
|
javax.sip.message |
This package contains the interfaces representing SIP messages.
|
test.tck.msgflow | |
test.unit.gov.nist.javax.sip.stack |
Modifier and Type | Method and Description |
---|---|
void |
Shootist.processInviteOK(Response ok,
ClientTransaction ct) |
Modifier and Type | Method and Description |
---|---|
boolean |
SipMessageValve.processResponse(Response response,
MessageChannel messageChannel) |
Modifier and Type | Method and Description |
---|---|
void |
SipProviderImpl.sendResponse(Response response) |
Constructor and Description |
---|
ResponseEventExt(Object source,
ClientTransactionExt clientTransaction,
Dialog dialog,
Response response) |
Modifier and Type | Method and Description |
---|---|
void |
DigestServerAuthenticationHelper.generateChallenge(HeaderFactory headerFactory,
Response response,
String realm) |
ClientTransaction |
AuthenticationHelperImpl.handleChallenge(Response challenge,
ClientTransaction challengedTransaction,
SipProvider transactionCreator,
int cacheTime) |
ClientTransaction |
AuthenticationHelper.handleChallenge(Response challenge,
ClientTransaction challengedTransaction,
SipProvider transactionCreator,
int cacheTime)
Uses securityAuthority to determinie a set of valid user credentials for
the specified Response (Challenge) and appends it to the challenged
request so that it could be retransmitted.
|
ClientTransaction |
AuthenticationHelperImpl.handleChallenge(Response challenge,
ClientTransaction challengedTransaction,
SipProvider transactionCreator,
int cacheTime,
boolean looseRouting) |
ClientTransaction |
AuthenticationHelper.handleChallenge(Response challenge,
ClientTransaction challengedTransaction,
SipProvider transactionCreator,
int cacheTime,
boolean useLooseRouting)
Uses securityAuthority to determinie a set of valid user credentials for
the specified Response (Challenge) and appends it to the challenged
request so that it could be retransmitted.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ResponseExt
Extension for the jain-sip Response interface.
|
Modifier and Type | Class and Description |
---|---|
class |
SIPResponse
SIP Response structure.
|
Modifier and Type | Method and Description |
---|---|
Response |
MessageFactoryImpl.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards)
Creates a new Response message of type specified by the statusCode
paramater, containing the mandatory headers of the message.
|
Response |
MessageFactoryImpl.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
byte[] content,
ContentTypeHeader contentType)
Creates a new Response message of type specified by the statusCode
paramater, containing the mandatory headers of the message with a body in
the form of a byte array and the body content type.
|
Response |
MessageFactoryImpl.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
ContentTypeHeader contentType,
byte[] content)
Creates a new Response message of type specified by the statusCode
paramater, containing the mandatory headers of the message with a body in
the form of a byte array and the body content type.
|
Response |
MessageFactoryImpl.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
ContentTypeHeader contentType,
Object content)
Creates a new Response message of type specified by the statusCode
paramater, containing the mandatory headers of the message with a body in
the form of a Java object and the body content type.
|
Response |
MessageFactoryImpl.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
Object content,
ContentTypeHeader contentType)
Creates a new Response message of type specified by the statusCode
paramater, containing the mandatory headers of the message with a body in
the form of a Java object and the body content type.
|
Response |
MessageFactoryImpl.createResponse(int statusCode,
Request request)
Creates a new Response message of type specified by the statusCode
paramater, based on a specific Request message.
|
Response |
MessageFactoryImpl.createResponse(int statusCode,
Request request,
ContentTypeHeader contentType,
byte[] content)
Creates a new Response message of type specified by the statusCode
paramater, based on a specific Request with a new body in the form of a
byte array and the body content type.
|
Response |
MessageFactoryImpl.createResponse(int statusCode,
Request request,
ContentTypeHeader contentType,
Object content)
Creates a new Response message of type specified by the statusCode
paramater, based on a specific Request with a new body in the form of a
Java object and the body content type.
|
Response |
MessageFactoryImpl.createResponse(String responseString)
Create a response from a string
|
Modifier and Type | Method and Description |
---|---|
Response |
SIPDialog.createReliableProvisionalResponse(int statusCode) |
Response |
SIPTransactionImpl.getResponse() |
Response |
SIPTransaction.getResponse()
Get the JAIN interface response
|
Modifier and Type | Method and Description |
---|---|
Request |
SIPDialog.createPrack(Response relResponse) |
boolean |
SIPMessageValve.processResponse(Response response,
MessageChannel messageChannel)
The callback method that is called for every response before any transaction/dialog mapping
or allocation occur.
|
boolean |
CongestionControlMessageValve.processResponse(Response response,
MessageChannel messageChannel) |
void |
SIPDialog.sendReliableProvisionalResponse(Response relResponse) |
void |
SIPServerTransactionImpl.sendReliableProvisionalResponse(Response relResponse) |
void |
SIPServerTransaction.sendReliableProvisionalResponse(Response relResponse) |
void |
SIPServerTransactionImpl.sendResponse(Response response) |
void |
SIPServerTransaction.sendResponse(Response response) |
void |
SIPDialog.startRetransmitTimer(SIPServerTransaction sipServerTx,
Response response)
Start the retransmit timer.
|
Modifier and Type | Method and Description |
---|---|
Response |
Dialog.createReliableProvisionalResponse(int statusCode)
Creates a new reliable provisional response based on an Invite request
that created this Dialog or that is now refreshing this Dialog.
|
Response |
ResponseEvent.getResponse()
Gets the Response message encapsulated in this ResponseEvent.
|
Modifier and Type | Method and Description |
---|---|
Request |
Dialog.createPrack(Response relResponse)
Creates a new PRACK Request message based on a reliable provisional
response received by this Dialog and the Dialog internal information.
|
void |
Dialog.sendReliableProvisionalResponse(Response relResponse)
Sends a reliable provisional response to the remote party of this dialog.
|
void |
ServerTransaction.sendResponse(Response response)
Sends the Response to a Request which is associated with this
ServerTransaction.
|
void |
SipProvider.sendResponse(Response response)
Sends the Response statelessly, that is no transaction record is
associated with this action.
|
Constructor and Description |
---|
ResponseEvent(Object source,
ClientTransaction clientTransaction,
Dialog dialog,
Response response)
Constructs a ResponseEvent encapsulating the Response that has been received
by the underlying SipProvider.
|
Modifier and Type | Method and Description |
---|---|
Response |
MessageFactory.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards)
Creates a new Response message of type specified by the statusCode
paramater, containing the mandatory headers of the message.
|
Response |
MessageFactory.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
ContentTypeHeader contentType,
byte[] content)
Creates a new Response message of type specified by the statusCode
paramater, containing the mandatory headers of the message with a body
in the form of a byte array and the body content type.
|
Response |
MessageFactory.createResponse(int statusCode,
CallIdHeader callId,
CSeqHeader cSeq,
FromHeader from,
ToHeader to,
List via,
MaxForwardsHeader maxForwards,
ContentTypeHeader contentType,
Object content)
Creates a new Response message of type specified by the statusCode
paramater, containing the mandatory headers of the message with a body
in the form of a Java object and the body content type.
|
Response |
MessageFactory.createResponse(int statusCode,
Request request)
Creates a new Response message of type specified by the statusCode
paramater, based on a specific Request message.
|
Response |
MessageFactory.createResponse(int statusCode,
Request request,
ContentTypeHeader contentType,
byte[] content)
Creates a new Response message of type specified by the statusCode
paramater, based on a specific Request with a new body in the form of a
byte array and the body content type.
|
Response |
MessageFactory.createResponse(int statusCode,
Request request,
ContentTypeHeader contentType,
Object content)
Creates a new Response message of type specified by the statusCode
paramater, based on a specific Request with a new body in the form of a
Java object and the body content type.
|
Response |
MessageFactory.createResponse(String response)
Creates a Response from a String.
|
Modifier and Type | Method and Description |
---|---|
protected void |
MessageFlowHarness.addStatus(Request request,
Response response) |
Modifier and Type | Method and Description |
---|---|
boolean |
SIPMessageValveImpl.processResponse(Response response,
MessageChannel messageChannel) |
Copyright © 2018. All Rights Reserved.