android.os.IUserManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.os;
import android.content.pm.UserInfo;
import androidx.annotation.RequiresApi;
import java.util.List;
public interface IUserManager extends IInterface {
@RequiresApi(26)
boolean isUserUnlocked(int userId)
throws RemoteException;
List getUsers(boolean excludeDying)
throws RemoteException;
List getUsers(boolean excludePartial, boolean excludeDying, boolean excludePreCreated)
throws RemoteException;
UserInfo getUserInfo(int userHandle);
UserInfo getProfileParent(int userId) throws RemoteException;
boolean isUserUnlockingOrUnlocked(int userId) throws RemoteException;
abstract class Stub extends Binder implements IUserManager {
public static IUserManager asInterface(IBinder obj) {
throw new RuntimeException("STUB");
}
}
}