1 /* 2 * Copyright (C) 2023 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 */ 16 17 package com.google.android.mobly.snippet.bundled; 18 19 import android.platform.helpers.HelperAccessor; 20 import android.platform.helpers.IAutoDialContactDetailsHelper; 21 22 import com.google.android.mobly.snippet.Snippet; 23 import com.google.android.mobly.snippet.rpc.Rpc; 24 25 /** Snippet class for exposing Contact Details App APIs. */ 26 public class ContactDetailsSnippet implements Snippet { 27 28 private final HelperAccessor<IAutoDialContactDetailsHelper> mContactsDetailsHelper; 29 ContactDetailsSnippet()30 public ContactDetailsSnippet() { 31 32 mContactsDetailsHelper = new HelperAccessor<>(IAutoDialContactDetailsHelper.class); 33 } 34 35 @Rpc(description = "Add and remove contact ( contact details are open ) from favorites.") addRemoveFavoriteContact()36 public void addRemoveFavoriteContact() { 37 mContactsDetailsHelper.get().addRemoveFavoriteContact(); 38 } 39 40 @Rpc(description = "Make call to number with type Work from contact details page.") makeCallFromDetailsPageByTypeWork()41 public void makeCallFromDetailsPageByTypeWork() { 42 mContactsDetailsHelper 43 .get() 44 .makeCallFromDetailsPageByType(IAutoDialContactDetailsHelper.ContactType.WORK); 45 } 46 47 @Rpc(description = "Make call to number with type Home from contact details page.") makeCallFromDetailsPageByTypeHome()48 public void makeCallFromDetailsPageByTypeHome() { 49 mContactsDetailsHelper 50 .get() 51 .makeCallFromDetailsPageByType(IAutoDialContactDetailsHelper.ContactType.HOME); 52 } 53 54 @Rpc(description = "Make call to number with type Mobile from contact details page.") makeCallFromDetailsPageByTypeMobile()55 public void makeCallFromDetailsPageByTypeMobile() { 56 mContactsDetailsHelper 57 .get() 58 .makeCallFromDetailsPageByType(IAutoDialContactDetailsHelper.ContactType.MOBILE); 59 } 60 61 @Rpc(description = "Close contact details page.") closeDetailsPage()62 public void closeDetailsPage() { 63 mContactsDetailsHelper.get().closeDetailsPage(); 64 } 65 } 66