NIST SIP Parser and Stack (v1.2) API

Uses of Class
gov.nist.javax.sip.header.SIPHeader

Packages that use SIPHeader
gov.nist.javax.sip.header Contains implementations of the SIP headers as defined in JAIN-SIP 1.1 and an implementation of the JAIN-SIP header factory. 
gov.nist.javax.sip.parser Parsers for SIP Headers, URL's and addresses. 
 

Uses of SIPHeader in gov.nist.javax.sip.header
 

Subclasses of SIPHeader in gov.nist.javax.sip.header
 class Accept
          Accept header : The top level header is actually AcceptList which is a list of Accept headers.
 class AcceptEncoding
          Accept-Encoding SIP (HTTP) Header.
 class AcceptEncodingList
          AcceptEncodingList of AccepEncoding headers.
 class AcceptLanguage
          Accept Language body.
 class AcceptLanguageList
          AcceptLanguageList: Strings together a list of AcceptLanguage SIPHeaders.
 class AcceptList
          Accept List of SIP headers.
 class AddressParametersHeader
          An abstract class for headers that take an address and parameters.
 class AlertInfo
          AlertInfo SIP Header.
 class AlertInfoList
          AlertInfo SIPHeader - there can be several AlertInfo headers.
 class Allow
          Allow SIPHeader.
 class AllowEvents
          AllowEvents SIPHeader.
 class AllowEventsList
          List of AllowEvents headers.
 class AllowList
          List of ALLOW headers.
 class AuthenticationHeader
          The generic AuthenticationHeader
 class AuthenticationInfo
          Authentication info SIP Header.
 class AuthenticationInfoList
          A list of AuthenticationInfo headers (there can be multiple in a message).
 class Authorization
          Authorization SIP header.
 class CallID
          Call ID SIPHeader.
 class CallInfo
          CallInfo SIPHeader.
 class CallInfoList
          A list of CallInfo headers (there can be multiple in a message).
 class Contact
          Contact Item.
 class ContactList
          List of contact headers.ContactLists are also maintained in a hashtable for quick lookup.
 class ContentDisposition
          Content Dispositon SIP Header.
 class ContentEncoding
          Content encoding part of a content encoding header list.
 class ContentEncodingList
          Content Encoding SIP header List.
 class ContentLanguage
          ContentLanguage header Fielding, et al.
 class ContentLanguageList
          ContentLanguage list of headers.
 class ContentLength
          ContentLength SIPHeader (of which there can be only one in a SIPMessage).
 class ContentType
          ContentType SIP Header 14.17 Content-Type The Content-Type entity-header field indicates the media type of the entity-body sent to the recipient or, in the case of the HEAD method, the media type that would have been sent had the request been a GET.
 class CSeq
          CSeq SIP Header.
 class ErrorInfo
          ErrorInfo SIP Header.
 class ErrorInfoList
          Error Info sip header.
 class Event
          Event SIP Header.
 class Expires
          Expires SIP Header.
 class ExtensionHeaderImpl
          A generic extension header for the stack.
 class ExtensionHeaderList
          A generic extension header list.
 class From
          From SIP Header.
 class InReplyTo
          InReplyTo SIP Header.
 class InReplyToList
          In-Reply-To SIP header.
 class MaxForwards
          MaxForwards SIPHeader
 class MimeVersion
          MimeVersion SIP Header.
 class MinExpires
          MinExpires SIP Header.
 class Organization
          Organization SIP Header.
 class ParametersHeader
          Parameters header.
 class Priority
          the Priority header.
 class ProxyAuthenticate
          Proxy Authenticate SIP (HTTP ) header.
 class ProxyAuthenticateList
          List of ProxyAuthenticate headers.
 class ProxyAuthorization
          ProxyAuthorization Header.
 class ProxyRequire
          ProxyRequire Header.
 class ProxyRequireList
          Proxy Require SIPSIPObject (list of option tags)
 class RAck
          RAck SIP Header implementation
 class Reason
          Definition of the Reason SIP Header.
 class ReasonList
          List of Reason headers.
 class RecordRoute
          The Request-Route header is added to a request by any proxy that insists on being in the path of subsequent requests for the same call leg.
 class RecordRouteList
          RecordRoute List of SIP headers (a collection of Addresses)
 class ReplyTo
          ReplyTo Header.
 class Require
          Require SIP Header.
 class RequireList
          List of Require headers.
 class RetryAfter
          Retry-After SIP Header.
 class Route
          Route SIPHeader Object
 class RouteList
          A list of Route Headers.
 class RSeq
           
 class Server
          Supported SIP Header.
 class SIPDateHeader
          Date Header.
 class SIPHeaderList
          This is the root class for all lists of SIP headers.
 class Subject
          Supported SIP Header.
 class SubscriptionState
          SubscriptionState header
 class Supported
          Supported SIP Header.
 class SupportedList
          A list of supported headers.
 class TimeStamp
          TimeStamp SIP Header.
 class To
          To SIP Header.
 class Unsupported
          the Unsupported header.
 class UnsupportedList
          List of Unsupported headers.
 class UserAgent
          the UserAgent SIPObject.
 class Via
          Via SIPHeader (these are strung together in a ViaList).
 class ViaList
          Keeps a list and a hashtable of via header functions.
 class Warning
          the WarningValue SIPObject.
 class WarningList
          A Warning SIPObject.
 class WWWAuthenticate
          The WWWAuthenticate SIP header.
 class WWWAuthenticateList
          WWWAuthenticate SIPHeader (of which there can be several?)
 

Methods in gov.nist.javax.sip.header that return SIPHeader
 SIPHeader SIPHeaderList.getFirst()
          Get the first element of this list.
 SIPHeader SIPHeaderList.getLast()
          Get the last element of this list.
 

Methods in gov.nist.javax.sip.header with parameters of type SIPHeader
 void SIPHeaderList.add(SIPHeader sipheader, boolean top)
          Add to this list.
 boolean SIPHeaderList.remove(SIPHeader obj)
          Remove a sip header from this list of sip headers.
 void SIPHeaderList.add(int index, SIPHeader sipHeader)
          insert at a location.
 

Uses of SIPHeader in gov.nist.javax.sip.parser
 

Methods in gov.nist.javax.sip.parser that return SIPHeader
 SIPHeader WWWAuthenticateParser.parse()
          parse the String message
 SIPHeader WarningParser.parse()
          parse the String message
 SIPHeader ViaParser.parse()
           
 SIPHeader UserAgentParser.parse()
          parse the String message
 SIPHeader UnsupportedParser.parse()
          parse the String message
 SIPHeader ToParser.parse()
           
 SIPHeader TimeStampParser.parse()
          parse the String message
 SIPHeader SupportedParser.parse()
          parse the String message
 SIPHeader SubscriptionStateParser.parse()
          parse the String message
 SIPHeader SubjectParser.parse()
          parse the String message
 SIPHeader StringMsgParser.parseSIPHeader(String header)
          Parse an individual SIP message header from a string.
 SIPHeader ServerParser.parse()
          parse the String server
 SIPHeader RSeqParser.parse()
          parse the String message
 SIPHeader RouteParser.parse()
          parse the String message and generate the Route List Object
 SIPHeader RetryAfterParser.parse()
          parse the String message
 SIPHeader RequireParser.parse()
          parse the String message
 SIPHeader ReplyToParser.parse()
          parse the String message and generate the ReplyTo List Object
 SIPHeader RecordRouteParser.parse()
          parse the String message and generate the RecordRoute List Object
 SIPHeader ReasonParser.parse()
          parse the String message
 SIPHeader RAckParser.parse()
          parse the String message
 SIPHeader ProxyRequireParser.parse()
          parse the String message
 SIPHeader ProxyAuthorizationParser.parse()
          parse the String message
 SIPHeader ProxyAuthenticateParser.parse()
          parse the String message
 SIPHeader PriorityParser.parse()
          parse the String header
 SIPHeader OrganizationParser.parse()
          parse the String header
 SIPHeader MinExpiresParser.parse()
          parse the String message
 SIPHeader MimeVersionParser.parse()
          parse the String message
 SIPHeader MaxForwardsParser.parse()
           
 SIPHeader InReplyToParser.parse()
          parse the String message
 SIPHeader HeaderParser.parse()
          Parse the SIP header from the buffer and return a parsed structure.
 SIPHeader FromParser.parse()
           
 SIPHeader ExpiresParser.parse()
          Parse the header.
 SIPHeader EventParser.parse()
          parse the String message
 SIPHeader ErrorInfoParser.parse()
          parse the ErrorInfo String header
 SIPHeader DateParser.parse()
          Parse method.
 SIPHeader CSeqParser.parse()
           
 SIPHeader ContentTypeParser.parse()
           
 SIPHeader ContentLengthParser.parse()
           
 SIPHeader ContentLanguageParser.parse()
          parse the ContentLanguageHeader String header
 SIPHeader ContentEncodingParser.parse()
          parse the ContentEncodingHeader String header
 SIPHeader ContentDispositionParser.parse()
          parse the ContentDispositionHeader String header
 SIPHeader ContactParser.parse()
           
 SIPHeader CallInfoParser.parse()
          parse the CallInfo String header
 SIPHeader CallIDParser.parse()
          parse the String message
 SIPHeader AuthorizationParser.parse()
          parse the String message
 SIPHeader AuthenticationInfoParser.parse()
          parse the AuthenticationInfo String header
 SIPHeader AllowParser.parse()
          parse the Allow String header
 SIPHeader AllowEventsParser.parse()
          parse the AllowEvents String header
 SIPHeader AlertInfoParser.parse()
          parse the AlertInfo String header
 SIPHeader AcceptParser.parse()
          parse the Accept String header
 SIPHeader AcceptLanguageParser.parse()
          parse the String message
 SIPHeader AcceptEncodingParser.parse()
          parse the String message
 


NIST SIP Parser and Stack (v1.2) API

A product of the NIST/ITL Advanced Networking Technologies Division.
See conditions of use.
Get the latest distribution.
Submit a bug report or feature request.