SipProfile
  public
  
  
  
  class
  SipProfile
  
    extends Object
  
  
  
  
  
      implements
      
        Cloneable, 
      
        Parcelable, 
      
        Serializable
      
  
  
| java.lang.Object | |
| ↳ | android.net.sip.SipProfile | 
      This class was deprecated
      in API level 31.
    SipManager and associated classes are no longer supported and
 should not be used as the basis of future VOIP apps.
  
Defines a SIP profile, including a SIP account, domain and server information.
You can create a SipProfile using SipProfile.Builder. You can also retrieve one from a SipSession, using SipSession.getLocalProfile() and SipSession.getPeerProfile.
Developer Guides
For more information about using SIP, read the Session Initiation Protocol developer guide.
Summary
| Nested classes | |
|---|---|
| 
        
        
        
        
        class | SipProfile.BuilderHelper class for creating a  | 
| Inherited constants | 
|---|
| Fields | |
|---|---|
| 
    public
    static
    final
    Creator<SipProfile> | CREATOR
 | 
| Public methods | |
|---|---|
| 
        
        
        
        
        
        int | 
      describeContents()
      Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. | 
| 
        
        
        
        
        
        String | 
      getAuthUserName()
      Gets the username for authentication. | 
| 
        
        
        
        
        
        boolean | 
      getAutoRegistration()
      Gets the flag of 'Auto Registration'. | 
| 
        
        
        
        
        
        String | 
      getDisplayName()
      Gets the display name of the user. | 
| 
        
        
        
        
        
        String | 
      getPassword()
      Gets the password. | 
| 
        
        
        
        
        
        int | 
      getPort()
      Gets the port number of the SIP server. | 
| 
        
        
        
        
        
        String | 
      getProfileName()
      Gets the (user-defined) name of the profile. | 
| 
        
        
        
        
        
        String | 
      getProtocol()
      Gets the protocol used to connect to the server. | 
| 
        
        
        
        
        
        String | 
      getProxyAddress()
      Gets the network address of the server outbound proxy. | 
| 
        
        
        
        
        
        boolean | 
      getSendKeepAlive()
      Gets the flag of 'Sending keep-alive'. | 
| 
        
        
        
        
        
        String | 
      getSipDomain()
      Gets the SIP domain. | 
| 
        
        
        
        
        
        String | 
      getUriString()
      Gets the SIP URI string of this profile. | 
| 
        
        
        
        
        
        String | 
      getUserName()
      Gets the username. | 
| 
        
        
        
        
        
        void | 
      setCallingUid(int uid)
      Sets the calling process's Uid in the sip service. | 
| 
        
        
        
        
        
        void | 
      writeToParcel(Parcel out, int flags)
      Flatten this object in to a Parcel. | 
| Inherited methods | |
|---|---|
Fields
Public methods
describeContents
public int describeContents ()
Describe the kinds of special objects contained in this Parcelable
 instance's marshaled representation. For example, if the object will
 include a file descriptor in the output of writeToParcel(android.os.Parcel, int),
 the return value of this method must include the
 CONTENTS_FILE_DESCRIPTOR bit.
| Returns | |
|---|---|
| int | a bitmask indicating the set of special object types marshaled
 by this Parcelable object instance.
 Value is either 0orCONTENTS_FILE_DESCRIPTOR | 
getAuthUserName
public String getAuthUserName ()
Gets the username for authentication. If it is null, then the username is used in authentication instead.
| Returns | |
|---|---|
| String | the authentication username | 
See also:
getAutoRegistration
public boolean getAutoRegistration ()
Gets the flag of 'Auto Registration'.
| Returns | |
|---|---|
| boolean | the flag of registering the profile automatically. | 
getDisplayName
public String getDisplayName ()
Gets the display name of the user.
| Returns | |
|---|---|
| String | the display name of the user | 
getPassword
public String getPassword ()
Gets the password.
| Returns | |
|---|---|
| String | the password | 
getPort
public int getPort ()
Gets the port number of the SIP server.
| Returns | |
|---|---|
| int | the port number of the SIP server | 
getProfileName
public String getProfileName ()
Gets the (user-defined) name of the profile.
| Returns | |
|---|---|
| String | name of the profile | 
getProtocol
public String getProtocol ()
Gets the protocol used to connect to the server.
| Returns | |
|---|---|
| String | the protocol | 
getProxyAddress
public String getProxyAddress ()
Gets the network address of the server outbound proxy.
| Returns | |
|---|---|
| String | the network address of the server outbound proxy | 
getSendKeepAlive
public boolean getSendKeepAlive ()
Gets the flag of 'Sending keep-alive'.
| Returns | |
|---|---|
| boolean | the flag of sending SIP keep-alive messages. | 
getSipDomain
public String getSipDomain ()
Gets the SIP domain.
| Returns | |
|---|---|
| String | the SIP domain | 
getUriString
public String getUriString ()
Gets the SIP URI string of this profile.
| Returns | |
|---|---|
| String | the SIP URI string of this profile | 
getUserName
public String getUserName ()
Gets the username.
| Returns | |
|---|---|
| String | the username | 
setCallingUid
public void setCallingUid (int uid)
Sets the calling process's Uid in the sip service.
| Parameters | |
|---|---|
| uid | int | 
writeToParcel
public void writeToParcel (Parcel out, int flags)
Flatten this object in to a Parcel.
| Parameters | |
|---|---|
| out | Parcel: The Parcel in which the object should be written.
 This value cannot benull. | 
| flags | int: Additional flags about how the object should be written.
 May be 0 orParcelable.PARCELABLE_WRITE_RETURN_VALUE.
 Value is either0or a combination ofParcelable.PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES | 
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
