Uses of Interface
javax.servlet.sip.SipAddress

Uses of SipAddress in javax.servlet.sip
 

Subinterfaces of SipAddress in javax.servlet.sip
 interface Contact
          Represents SIP contact addresses.
 

Methods in javax.servlet.sip that return SipAddress
 SipAddress SipFactory.createSipAddress(java.lang.String sipAddress)
          Returns a SipAddress corresponding to the specified string.
 SipAddress SipFactory.createSipAddress(URI uri)
          Returns a SipAddress with the specified URI and no display name.
 SipAddress SipFactory.createSipAddress(URI uri, java.lang.String displayName)
          Returns a new SipAddress with the specified URI and display name.
 SipAddress SipServletMessage.getFrom()
          Returns the value of the From header.
 SipAddress SipServletMessage.getTo()
          Returns the value of the To header.
 SipAddress SipSession.getLocalParty()
          Returns the SipAddress identifying the local party.
 SipAddress SipSession.getRemoteParty()
          Returns the SipAddress identifying the remote party.
 

Methods in javax.servlet.sip with parameters of type SipAddress
 void SipServletRequest.pushRoute(SipAddress proxyAddr)
          Adds a Route header field value to this request.
 Contact SipFactory.createContact(SipAddress addr)
          Returns a Contact object corresponding to the specified SipAddress.
 SipServletRequest SipFactory.createRequest(SipApplicationSession appSession, java.lang.String method, SipAddress from, SipAddress to)
          Returns a new request object with the specified request method, From, and To headers.