IVerifyAppsDataCallback.Stub.Proxy
Stay organized with collections
Save and categorize content based on your preferences.
Inherited Method Summary
From class com.google.android.aidl.BaseProxy
IBinder
|
asBinder()
|
Parcel
|
obtainAndWriteInterfaceToken()
|
Parcel
|
transactAndReadException(int arg0, Parcel arg1)
|
void |
transactAndReadExceptionReturnVoid(int arg0,
Parcel arg1)
|
void |
transactOneway(int arg0, Parcel arg1)
|
From class java.lang.Object
Object
|
clone()
|
boolean |
|
void |
finalize()
|
final Class<?>
|
getClass()
|
int |
hashCode()
|
final void |
notify()
|
final void |
notifyAll()
|
String
|
toString()
|
final void |
wait(long arg0, int arg1)
|
final void |
wait(long arg0)
|
final void |
wait()
|
From interface android.os.IInterface
Public Methods
public void onGetVerifyAppsDataResult (boolean
success, Bundle
result)
This will be called with the results of the getVerifyAppsData API.
Parameters
success |
false if there was an error while getting the list of harmful apps, otherwise
true. |
result |
A Bundle containing the requested data. Can be null if success is false |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-31 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[[["`IVerifyAppsDataCallback.Stub.Proxy` is a proxy implementation for the `IVerifyAppsDataCallback` AIDL interface, facilitating communication with the Verify Apps service."],["The primary method, `onGetVerifyAppsDataResult`, is invoked upon completion of the `getVerifyAppsData` API call, delivering the result in a `Bundle`."],["This proxy class inherits functionalities from `BaseProxy`, `Object`, `IInterface`, and `IVerifyAppsDataCallback` for managing remote procedure calls and object interactions."],["`onGetVerifyAppsDataResult` provides information about the success status and data retrieved from the `getVerifyAppsData` API, potentially indicating harmful app detection."],["A `RemoteException` may be thrown during the process, indicating an error in the remote communication."]]],["The `IVerifyAppsDataCallback.Stub.Proxy` class manages the results of the `getVerifyAppsData` API. Its core action is the `onGetVerifyAppsDataResult` method, which is invoked with a boolean `success` indicator and a `Bundle` named `result`. If `success` is true, the `result` bundle contains the requested data; otherwise, it can be null, signaling an error during the retrieval of harmful apps' data. It can throw a `RemoteException`. Other methods are related to object and binder management.\n"]]