FileDocCategorySizeDatePackage
IncomingQueueElement.javaAPI DocphoneME MR2 API (J2ME)2586Wed May 02 18:00:42 BST 2007gov.nist.microedition.sip

IncomingQueueElement

public class IncomingQueueElement extends Object
Element of queue of incoming responses and associated client transactions.

Fields Summary
private gov.nist.siplite.message.Response
response
Incoming response.
private gov.nist.siplite.stack.ClientTransaction
clientTransaction
New client transaction.
Constructors Summary
protected IncomingQueueElement(gov.nist.siplite.message.Response response, gov.nist.siplite.stack.ClientTransaction clientTransaction)
Constructor.

param
response incoming response
param
clientTransaction new client transaction

        this.response = response;
        this.clientTransaction = clientTransaction;
    
Methods Summary
protected booleancontainsClientTransaction()
Checking if client transaction member is not null.

return
true when client transaction member is not null

        return clientTransaction != null;
    
protected gov.nist.siplite.stack.ClientTransactiongetClientTransaction()
Gets client transaction.

return
client transaction

        return clientTransaction;
    
protected gov.nist.siplite.message.ResponsegetResponse()
Gets response.

return
response

        return response;
    
protected voidsetClientTransaction(gov.nist.siplite.stack.ClientTransaction clientTransaction)
Sets client transaction.

param
clientTransaction new client transaction

        this.clientTransaction = clientTransaction;