Beispiel #1
0
  /**
   * Returns the local timestamp of when the file transfer was initiated and/or queued for outgoing
   * file transfers or the local timestamp of when the file transfer invitation was received for
   * incoming file transfers
   *
   * @return long
   * @throws RcsPersistentStorageException
   * @throws RcsGenericException
   */
  public long getTimestamp() throws RcsPersistentStorageException, RcsGenericException {
    try {
      return mTransferInf.getTimestamp();

    } catch (Exception e) {
      RcsPersistentStorageException.assertException(e);
      throw new RcsGenericException(e);
    }
  }