Uses of Interface
org.lastbamboo.common.sip.stack.message.header.SipHeader

Packages that use SipHeader
org.lastbamboo.common.sip.stack.message   
org.lastbamboo.common.sip.stack.message.header   
 

Uses of SipHeader in org.lastbamboo.common.sip.stack.message
 

Methods in org.lastbamboo.common.sip.stack.message that return SipHeader
 SipHeader SipMessage.getHeader(String headerName)
          Accessor for the complete header with the specified name.
 SipHeader DoubleCrlfKeepAlive.getHeader(String headerName)
           
 SipHeader AbstractSipMessage.getHeader(String headerName)
           
 

Methods in org.lastbamboo.common.sip.stack.message that return types with arguments of type SipHeader
static Map<String,SipHeader> SipMessageUtils.convertHeaders(Map<String,List<String>> headers)
           
 Map<String,SipHeader> SipMessage.getHeaders()
          Accessor for all headers in the message.
 Map<String,SipHeader> DoubleCrlfKeepAlive.getHeaders()
           
 Map<String,SipHeader> AbstractSipMessage.getHeaders()
           
 

Methods in org.lastbamboo.common.sip.stack.message with parameters of type SipHeader
 Invite SipMessageFactoryImpl.addVia(Invite message, SipHeader newHeader)
           
 Invite SipMessageFactory.addVia(Invite message, SipHeader newHeader)
          Copies all the data from the original message into a new message, adding the specified Via header.
 Register SipMessageFactoryImpl.addVia(Register message, SipHeader newHeader)
           
 Register SipMessageFactory.addVia(Register request, SipHeader via)
          Copies all the data from the original message into a new message, adding the specified Via header.
static String SipMessageUtils.extractCSeqMethod(SipHeader cseq)
           
static URI SipMessageUtils.extractUri(SipHeader header)
          Extracts the URI from a header value.
 

Method parameters in org.lastbamboo.common.sip.stack.message with type arguments of type SipHeader
 SipMessage UnknownSipRequestFactory.createSipMessage(Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
           
 SipMessage SipResponseFactory.createSipMessage(Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
           
 SipMessage SipRegisterFactory.createSipMessage(Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
           
 SipMessage SipInviteFactory.createSipMessage(Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
           
 SipMessage SingleSipMessageFactory.createSipMessage(Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
          Creates a new SIP message.
static int SipMessageUtils.extractContentLength(Map<String,SipHeader> headers)
           
 

Constructor parameters in org.lastbamboo.common.sip.stack.message with type arguments of type SipHeader
AbstractSipMessage(int statusCode, String reasonPhrase, Map<String,SipHeader> headers)
           
AbstractSipMessage(int statusCode, String reasonPhrase, Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
           
AbstractSipMessage(SipMethod method, URI requestUri, Map<String,SipHeader> headers)
           
AbstractSipMessage(SipMethod method, URI requestUri, Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
           
AbstractSipMessage(String startLine, SipMethod method, Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
          Creates a new SIP message with the specified first line of the message, the specified headers, and the specified message body.
Invite(String startLine, Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
          Creates a new INVITE request.
Invite(URI requestUri, Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
          Creates a new INVITE request with the specified first line of the message, the specified headers, and the specified message body.
Register(String startLine, Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
          Creates a new REGISTER request.
Register(URI requestUri, Map<String,SipHeader> headers)
          Creates a new register request.
RequestTimeoutResponse(Map<String,SipHeader> headers)
          Creates a new 408 Request Timeout response.
SipResponse(int statusCode, String reasonPhrase, Map<String,SipHeader> headers)
          Creates a new SIP response message.
SipResponse(int statusCode, String reasonPhrase, Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
          Creates a new SIP response message.
UnknownSipRequest(String method, URI requestUri, Map<String,SipHeader> headers, org.littleshoot.mina.common.ByteBuffer body)
          Creates a new unknown message.
 

Uses of SipHeader in org.lastbamboo.common.sip.stack.message.header
 

Classes in org.lastbamboo.common.sip.stack.message.header that implement SipHeader
 class SipHeaderImpl
          Bean for a single SIP header.
 

Methods in org.lastbamboo.common.sip.stack.message.header that return SipHeader
 SipHeader SipHeaderFactoryImpl.createCallId()
           
 SipHeader SipHeaderFactory.createCallId()
           
 SipHeader SipHeaderFactoryImpl.createContact(URI contactUri, org.apache.commons.id.uuid.UUID instanceId)
           
 SipHeader SipHeaderFactory.createContact(URI contactUri, org.apache.commons.id.uuid.UUID instanceId)
           
 SipHeader SipHeaderFactoryImpl.createContentLength(int contentLength)
           
 SipHeader SipHeaderFactory.createContentLength(int contentLength)
           
 SipHeader SipHeaderFactoryImpl.createCSeq(String method)
           
 SipHeader SipHeaderFactory.createCSeq(String method)
           
 SipHeader SipHeaderFactoryImpl.createExpires(int millis)
           
 SipHeader SipHeaderFactory.createExpires(int millis)
           
 SipHeader SipHeaderFactoryImpl.createFrom(String displayName, URI sipUri)
           
 SipHeader SipHeaderFactory.createFrom(String displayName, URI sipUri)
           
 SipHeader SipHeaderFactoryImpl.createHeader(String name, String value)
           
 SipHeader SipHeaderFactory.createHeader(String name, String value)
           
 SipHeader SipHeaderFactoryImpl.createMaxForwards(int maxForwards)
           
 SipHeader SipHeaderFactory.createMaxForwards(int maxForwards)
           
 SipHeader SipHeaderFactoryImpl.createSentByVia(InetAddress address)
           
 SipHeader SipHeaderFactory.createSentByVia(InetAddress address)
          Creates a new Via header indicating the "sent-by" address of the host processing the message.
 SipHeader SipHeaderFactoryImpl.createSupported()
           
 SipHeader SipHeaderFactory.createSupported()
          Create the header for the extensions we support.
 SipHeader SipHeaderFactoryImpl.createTo(SipHeader originalTo)
           
 SipHeader SipHeaderFactory.createTo(SipHeader originalTo)
           
 SipHeader SipHeaderFactoryImpl.createTo(URI sipUri)
           
 SipHeader SipHeaderFactory.createTo(URI sipUri)
           
 

Methods in org.lastbamboo.common.sip.stack.message.header with parameters of type SipHeader
 SipHeader SipHeaderFactoryImpl.createTo(SipHeader originalTo)
           
 SipHeader SipHeaderFactory.createTo(SipHeader originalTo)
           
 



Copyright © 2013 LittleShoot. All Rights Reserved.