Merge "add ServiceManager.getUpdatableNames()"

This commit is contained in:
Jooyung Han
2022-10-26 04:05:48 +00:00
committed by Gerrit Code Review

View File

@@ -98,6 +98,10 @@ class ServiceManagerProxy implements IServiceManager {
return mServiceManager.updatableViaApex(name);
}
public String[] getUpdatableNames(String apexName) throws RemoteException {
return mServiceManager.getUpdatableNames(apexName);
}
public ConnectionInfo getConnectionInfo(String name) throws RemoteException {
return mServiceManager.getConnectionInfo(name);
}