![JAR search and dependency download from the Maven repository](/logo.png)
src.android.telephony.ims.stub.ImsUtImplBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-all Show documentation
Show all versions of android-all Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
/*
* Copyright (C) 2017 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.telephony.ims.stub;
import android.annotation.SystemApi;
import android.os.Bundle;
import android.os.RemoteException;
import android.telephony.ims.ImsUtListener;
import com.android.ims.internal.IImsUt;
import com.android.ims.internal.IImsUtListener;
/**
* Base implementation of IMS UT interface, which implements stubs. Override these methods to
* implement functionality.
*
* @hide
*/
// DO NOT remove or change the existing APIs, only add new ones to this Base implementation or you
// will break other implementations of ImsUt maintained by other ImsServices.
@SystemApi
public class ImsUtImplBase {
private IImsUt.Stub mServiceImpl = new IImsUt.Stub() {
@Override
public void close() throws RemoteException {
ImsUtImplBase.this.close();
}
@Override
public int queryCallBarring(int cbType) throws RemoteException {
return ImsUtImplBase.this.queryCallBarring(cbType);
}
@Override
public int queryCallForward(int condition, String number) throws RemoteException {
return ImsUtImplBase.this.queryCallForward(condition, number);
}
@Override
public int queryCallWaiting() throws RemoteException {
return ImsUtImplBase.this.queryCallWaiting();
}
@Override
public int queryCLIR() throws RemoteException {
return ImsUtImplBase.this.queryCLIR();
}
@Override
public int queryCLIP() throws RemoteException {
return ImsUtImplBase.this.queryCLIP();
}
@Override
public int queryCOLR() throws RemoteException {
return ImsUtImplBase.this.queryCOLR();
}
@Override
public int queryCOLP() throws RemoteException {
return ImsUtImplBase.this.queryCOLP();
}
@Override
public int transact(Bundle ssInfo) throws RemoteException {
return ImsUtImplBase.this.transact(ssInfo);
}
@Override
public int updateCallBarring(int cbType, int action, String[] barrList) throws
RemoteException {
return ImsUtImplBase.this.updateCallBarring(cbType, action, barrList);
}
@Override
public int updateCallForward(int action, int condition, String number, int serviceClass,
int timeSeconds) throws RemoteException {
return ImsUtImplBase.this.updateCallForward(action, condition, number, serviceClass,
timeSeconds);
}
@Override
public int updateCallWaiting(boolean enable, int serviceClass) throws RemoteException {
return ImsUtImplBase.this.updateCallWaiting(enable, serviceClass);
}
@Override
public int updateCLIR(int clirMode) throws RemoteException {
return ImsUtImplBase.this.updateCLIR(clirMode);
}
@Override
public int updateCLIP(boolean enable) throws RemoteException {
return ImsUtImplBase.this.updateCLIP(enable);
}
@Override
public int updateCOLR(int presentation) throws RemoteException {
return ImsUtImplBase.this.updateCOLR(presentation);
}
@Override
public int updateCOLP(boolean enable) throws RemoteException {
return ImsUtImplBase.this.updateCOLP(enable);
}
@Override
public void setListener(IImsUtListener listener) throws RemoteException {
ImsUtImplBase.this.setListener(new ImsUtListener(listener));
}
@Override
public int queryCallBarringForServiceClass(int cbType, int serviceClass)
throws RemoteException {
return ImsUtImplBase.this.queryCallBarringForServiceClass(cbType, serviceClass);
}
@Override
public int updateCallBarringForServiceClass(int cbType, int action,
String[] barrList, int serviceClass) throws RemoteException {
return ImsUtImplBase.this.updateCallBarringForServiceClass(
cbType, action, barrList, serviceClass);
}
};
/**
* Called when the framework no longer needs to interact with the IMS UT implementation any
* longer.
*/
public void close() {
}
/**
* Retrieves the call barring configuration.
* @param cbType
*/
public int queryCallBarring(int cbType) {
return -1;
}
/**
* Retrieves the configuration of the call barring for specified service class.
*/
public int queryCallBarringForServiceClass(int cbType, int serviceClass) {
return -1;
}
/**
* Retrieves the configuration of the call forward.
*/
public int queryCallForward(int condition, String number) {
return -1;
}
/**
* Retrieves the configuration of the call waiting.
*/
public int queryCallWaiting() {
return -1;
}
/**
* Retrieves the default CLIR setting.
* @hide
*/
public int queryCLIR() {
return queryClir();
}
/**
* Retrieves the CLIP call setting.
* @hide
*/
public int queryCLIP() {
return queryClip();
}
/**
* Retrieves the COLR call setting.
* @hide
*/
public int queryCOLR() {
return queryColr();
}
/**
* Retrieves the COLP call setting.
* @hide
*/
public int queryCOLP() {
return queryColp();
}
/**
* Retrieves the default CLIR setting.
*/
public int queryClir() {
return -1;
}
/**
* Retrieves the CLIP call setting.
*/
public int queryClip() {
return -1;
}
/**
* Retrieves the COLR call setting.
*/
public int queryColr() {
return -1;
}
/**
* Retrieves the COLP call setting.
*/
public int queryColp() {
return -1;
}
/**
* Updates or retrieves the supplementary service configuration.
*/
public int transact(Bundle ssInfo) {
return -1;
}
/**
* Updates the configuration of the call barring.
*/
public int updateCallBarring(int cbType, int action, String[] barrList) {
return -1;
}
/**
* Updates the configuration of the call barring for specified service class.
*/
public int updateCallBarringForServiceClass(int cbType, int action, String[] barrList,
int serviceClass) {
return -1;
}
/**
* Updates the configuration of the call forward.
*/
public int updateCallForward(int action, int condition, String number, int serviceClass,
int timeSeconds) {
return 0;
}
/**
* Updates the configuration of the call waiting.
*/
public int updateCallWaiting(boolean enable, int serviceClass) {
return -1;
}
/**
* Updates the configuration of the CLIR supplementary service.
* @hide
*/
public int updateCLIR(int clirMode) {
return updateClir(clirMode);
}
/**
* Updates the configuration of the CLIP supplementary service.
* @hide
*/
public int updateCLIP(boolean enable) {
return updateClip(enable);
}
/**
* Updates the configuration of the COLR supplementary service.
* @hide
*/
public int updateCOLR(int presentation) {
return updateColr(presentation);
}
/**
* Updates the configuration of the COLP supplementary service.
* @hide
*/
public int updateCOLP(boolean enable) {
return updateColp(enable);
}
/**
* Updates the configuration of the CLIR supplementary service.
*/
public int updateClir(int clirMode) {
return -1;
}
/**
* Updates the configuration of the CLIP supplementary service.
*/
public int updateClip(boolean enable) {
return -1;
}
/**
* Updates the configuration of the COLR supplementary service.
*/
public int updateColr(int presentation) {
return -1;
}
/**
* Updates the configuration of the COLP supplementary service.
*/
public int updateColp(boolean enable) {
return -1;
}
/**
* Sets the listener.
*/
public void setListener(ImsUtListener listener) {
}
/**
* @hide
*/
public IImsUt getInterface() {
return mServiceImpl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy