All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.os.IUserManager Maven / Gradle / Ivy

Go to download

provide android hidden api definition ,helper for android super framework development

There is a newer version: 1.11
Show newest version
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");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy