blob: f19646f00865f2bd19ff0ecf79c334a594b18850 [file] [log] [blame]
yaolu79525d02016-08-24 12:08:39 -07001/*
2 * Copyright (C) 2016 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package com.android.contacts.common.logging;
17
Walter Jang1a9b44e2016-10-31 08:53:20 -070018import com.google.common.base.MoreObjects;
yaolu79525d02016-08-24 12:08:39 -070019
20/**
21 * Describes how user views and takes action in Quick contact
22 */
23public final class QuickContactEvent {
24
25 /** The package name that QuickContact is launched from. **/
26 public String referrer;
27
28 /** The type of the contact displayed in QuickContact. **/
29 public int contactType;
30
31 /** The type of the card displayed in QuickContact. **/
32 public int cardType;
33
34 /** The type of the user action in QuickContact. **/
35 public int actionType;
36
37 /** The third party action that a user takes. **/
38 public String thirdPartyAction;
39
40 // Should match ContactsExtension.QuickContactEvent values in
41 // http://cs/google3/logs/proto/wireless/android/contacts/contacts_extensions.proto
42 public static final class ContactType {
43 public static final int UNKNOWN_TYPE = 0;
44 public static final int EDITABLE = 1;
45 public static final int INVISIBLE_AND_ADDABLE = 2;
46 public static final int DIRECTORY = 3;
47 }
48
49 public static final class CardType {
50 public static final int UNKNOWN_CARD = 0;
51 public static final int NO_CONTACT = 1;
52 public static final int CONTACT = 2;
53 public static final int RECENT = 3;
54 public static final int ABOUT = 4;
55 public static final int PERMISSION = 5;
56 }
57
58 public static final class ActionType {
59 public static final int UNKNOWN_ACTION = 0;
60 public static final int START = 1;
61 public static final int STAR = 2;
62 public static final int UNSTAR = 3;
63 public static final int EDIT = 4;
64 public static final int ADD = 5;
yaolu7a09c702016-09-01 18:12:03 -070065 public static final int REMOVE = 6;
yaolu79525d02016-08-24 12:08:39 -070066 public static final int SHARE = 7;
67 public static final int SHORTCUT = 8;
68 public static final int HELP = 9;
69 public static final int CALL = 10;
70 public static final int SMS = 11;
71 public static final int VIDEOCALL = 12;
72 public static final int EMAIL = 13;
73 public static final int SIPCALL = 14;
yaolu7a09c702016-09-01 18:12:03 -070074 public static final int ADDRESS = 15;
yaolu79525d02016-08-24 12:08:39 -070075 public static final int DIRECTIONS = 16;
76 public static final int THIRD_PARTY = 17;
77 }
78
79 @Override
80 public String toString() {
Walter Jang1a9b44e2016-10-31 08:53:20 -070081 return MoreObjects.toStringHelper(this)
yaolu79525d02016-08-24 12:08:39 -070082 .add("referrer", referrer)
83 .add("contactType", contactType)
84 .add("cardType", cardType)
85 .add("actionType", actionType)
86 .add("thirdPartyAction", thirdPartyAction)
87 .toString();
88 }
89}