This CL adds wrappers for: CallServiceLookupResponse CallServiceAdapter IInCallAdapter IInCallService This CL also moves all the aidl files into com.android.internal.telecomm. Change-Id: I840f023bc545643e8bb719825e7bc78344ee46ee
82 lines
2.7 KiB
Java
82 lines
2.7 KiB
Java
/*
|
|
* Copyright (C) 2014 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package android.telecomm;
|
|
|
|
import android.os.RemoteException;
|
|
|
|
import com.android.internal.telecomm.IInCallAdapter;
|
|
|
|
/**
|
|
* Receives commands from {@link InCallService} implementations which should be executed by
|
|
* Telecomm. When Telecomm binds to a {@link InCallService}, an instance of this class is given to
|
|
* the in-call service through which it can manipulate live (active, dialing, ringing) calls. When
|
|
* the in-call service is notified of new calls ({@link InCallService#addCall}), it can use the
|
|
* given call IDs to execute commands such as {@link #answerCall} for incoming calls or
|
|
* {@link #disconnectCall} for active calls the user would like to end. Some commands are only
|
|
* appropriate for calls in certain states; please consult each method for such limitations.
|
|
* TODO(santoscordon): Needs more/better comments once the API is finalized.
|
|
* TODO(santoscordon): Specify the adapter will stop functioning when there are no more calls.
|
|
*/
|
|
public final class InCallAdapter {
|
|
private final IInCallAdapter mAdapter;
|
|
|
|
/**
|
|
* {@hide}
|
|
*/
|
|
public InCallAdapter(IInCallAdapter adapter) {
|
|
mAdapter = adapter;
|
|
}
|
|
|
|
/**
|
|
* Instructs Telecomm to answer the specified call.
|
|
*
|
|
* @param callId The identifier of the call to answer.
|
|
*/
|
|
public void answerCall(String callId) {
|
|
try {
|
|
mAdapter.answerCall(callId);
|
|
} catch (RemoteException e) {
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Instructs Telecomm to reject the specified call.
|
|
* TODO(santoscordon): Add reject-with-text-message parameter when that feature
|
|
* is ported over.
|
|
*
|
|
* @param callId The identifier of the call to reject.
|
|
*/
|
|
public void rejectCall(String callId) {
|
|
try {
|
|
mAdapter.rejectCall(callId);
|
|
} catch (RemoteException e) {
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Instructs Telecomm to disconnect the specified call.
|
|
*
|
|
* @param callId The identifier of the call to disconnect.
|
|
*/
|
|
public void disconnectCall(String callId) {
|
|
try {
|
|
mAdapter.disconnectCall(callId);
|
|
} catch (RemoteException e) {
|
|
}
|
|
}
|
|
}
|