ProvisioningManager.FeatureProvisioningCallback


public static abstract class ProvisioningManager.FeatureProvisioningCallback
extends Object

java.lang.Object
   ↳ android.telephony.ims.ProvisioningManager.FeatureProvisioningCallback


Callback for IMS provisioning feature changes.

Summary

Public constructors

FeatureProvisioningCallback()

Public methods

abstract void onFeatureProvisioningChanged(int capability, int tech, boolean isProvisioned)

The IMS MMTEL provisioning has changed for a specific capability and IMS registration technology.

abstract void onRcsFeatureProvisioningChanged(int capability, int tech, boolean isProvisioned)

The IMS RCS provisioning has changed for a specific capability and IMS registration technology.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public constructors

FeatureProvisioningCallback

public FeatureProvisioningCallback ()

Public methods

onFeatureProvisioningChanged

Added in API level 33
public abstract void onFeatureProvisioningChanged (int capability, 
                int tech, 
                boolean isProvisioned)

The IMS MMTEL provisioning has changed for a specific capability and IMS registration technology.

Parameters
capability int: The MMTEL capability that provisioning has changed for. Value is either 0 or a combination of MmTelFeature.MmTelCapabilities.CAPABILITY_TYPE_VOICE, MmTelFeature.MmTelCapabilities.CAPABILITY_TYPE_VIDEO, MmTelFeature.MmTelCapabilities.CAPABILITY_TYPE_UT, MmTelFeature.MmTelCapabilities.CAPABILITY_TYPE_SMS, MmTelFeature.MmTelCapabilities.CAPABILITY_TYPE_CALL_COMPOSER, and MmTelFeature.MmTelCapabilities.CAPABILITY_TYPE_CALL_COMPOSER_BUSINESS_ONLY

tech int: The IMS registration technology associated with the MMTEL capability that provisioning has changed for. Value is ImsRegistrationImplBase.REGISTRATION_TECH_NONE, ImsRegistrationImplBase.REGISTRATION_TECH_LTE, ImsRegistrationImplBase.REGISTRATION_TECH_IWLAN, ImsRegistrationImplBase.REGISTRATION_TECH_CROSS_SIM, ImsRegistrationImplBase.REGISTRATION_TECH_NR, or ImsRegistrationImplBase.REGISTRATION_TECH_3G

isProvisioned boolean: true if the capability is provisioned for the technology specified, or false if the capability is not provisioned for the technology specified.

onRcsFeatureProvisioningChanged

Added in API level 33
public abstract void onRcsFeatureProvisioningChanged (int capability, 
                int tech, 
                boolean isProvisioned)

The IMS RCS provisioning has changed for a specific capability and IMS registration technology.

Parameters
capability int: The RCS capability that provisioning has changed for. Value is either 0 or a combination of ImsRcsManager.CAPABILITY_TYPE_NONE, ImsRcsManager.CAPABILITY_TYPE_OPTIONS_UCE, and ImsRcsManager.CAPABILITY_TYPE_PRESENCE_UCE

tech int: The IMS registration technology associated with the RCS capability that provisioning has changed for. Value is ImsRegistrationImplBase.REGISTRATION_TECH_NONE, ImsRegistrationImplBase.REGISTRATION_TECH_LTE, ImsRegistrationImplBase.REGISTRATION_TECH_IWLAN, ImsRegistrationImplBase.REGISTRATION_TECH_CROSS_SIM, ImsRegistrationImplBase.REGISTRATION_TECH_NR, or ImsRegistrationImplBase.REGISTRATION_TECH_3G

isProvisioned boolean: true if the capability is provisioned for the technology specified, or false if the capability is not provisioned for the technology specified.