summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/enrichedcall/historyquery/HistoryQuery.java
blob: b7593cebbcfccee87ad48d8fb4118d020a512aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.android.dialer.enrichedcall.historyquery;

import android.support.annotation.NonNull;
import com.android.dialer.common.LogUtil;
import com.google.auto.value.AutoValue;

/**
 * Data object representing the pieces of information required to query for historical enriched call
 * data.
 */
@AutoValue
public abstract class HistoryQuery {

  @NonNull
  public static HistoryQuery create(@NonNull String number, long callStartTime, long callEndTime) {
    return new AutoValue_HistoryQuery(number, callStartTime, callEndTime);
  }

  public abstract String getNumber();

  public abstract long getCallStartTimestamp();

  public abstract long getCallEndTimestamp();

  @Override
  public String toString() {
    return String.format(
        "HistoryQuery{number: %s, callStartTimestamp: %d, callEndTimestamp: %d}",
        LogUtil.sanitizePhoneNumber(getNumber()), getCallStartTimestamp(), getCallEndTimestamp());
  }
}