Example #1
0
  /**
   * Gets the local call profile that this session is associated with
   *
   * @return the local call profile that this session is associated with
   */
  public ImsCallProfile getLocalCallProfile() {
    if (mClosed) {
      return null;
    }

    try {
      return miSession.getLocalCallProfile();
    } catch (RemoteException e) {
      return null;
    }
  }