152d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon/*
252d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon * Copyright (C) 2014 The Android Open Source Project
352d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon *
452d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon * Licensed under the Apache License, Version 2.0 (the "License");
552d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon * you may not use this file except in compliance with the License.
652d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon * You may obtain a copy of the License at
752d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon *
852d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon *      http://www.apache.org/licenses/LICENSE-2.0
952d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon *
1052d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon * Unless required by applicable law or agreed to in writing, software
1152d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon * distributed under the License is distributed on an "AS IS" BASIS,
1252d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1352d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon * See the License for the specific language governing permissions and
1452d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon * limitations under the License.
1552d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon */
1652d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon
17ef9f6f957d897ea0ed82114185b8fa3fefd4917bTyler Gunnpackage com.android.internal.telecom;
1852d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon
1952d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordonimport android.content.ComponentName;
2052d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon
2152d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon/**
2252d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon * Simple response callback object.
23da227c7fdd5be646d51b8d4e0627a43fe40c57b1Nancy Chen *
24da227c7fdd5be646d51b8d4e0627a43fe40c57b1Nancy Chen * {@hide}
2552d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon */
2652d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordononeway interface RemoteServiceCallback {
2752d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon    void onError();
2852d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon    void onResult(in List<ComponentName> components, in List<IBinder> callServices);
2952d8a15e146e682319380322f94ceb6d93fa1a97Santos Cordon}
30