summaryrefslogtreecommitdiff
path: root/src/com/android/dialer/service/CachedNumberLookupService.java
blob: a08c2856402fafa1e0d964e8192f426619a911c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.android.dialer.service;

import android.content.Context;

import com.android.dialer.calllog.ContactInfo;

public interface CachedNumberLookupService {
    /**
     * Perform a lookup using the cached number lookup service to return contact
     * information stored in the cache that corresponds to the given number.
     *
     * @param context Valid context
     * @param number Phone number to lookup the cache for
     * @return A {@link ContactInfo} containing the contact information if the phone
     * number is found in the cache, {@link ContactInfo#EMPTY} if the phone number was
     * not found in the cache, and null if there was an error when querying the cache.
     */
    public ContactInfo lookupCachedContactFromNumber(Context context, String number);
}