53 lines
1.8 KiB
Java
53 lines
1.8 KiB
Java
/*
|
|
* Copyright (C) 2020 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package android.location;
|
|
|
|
|
|
import android.annotation.NonNull;
|
|
|
|
/**
|
|
* Location manager local system service interface.
|
|
*
|
|
* @hide Only for use within the system server.
|
|
*/
|
|
public abstract class LocationManagerInternal {
|
|
|
|
/**
|
|
* Returns true if the given provider is enabled for the given user.
|
|
*
|
|
* @param provider A location provider as listed by {@link LocationManager#getAllProviders()}
|
|
* @param userId The user id to check
|
|
* @return True if the provider is enabled, false otherwise
|
|
*/
|
|
public abstract boolean isProviderEnabledForUser(@NonNull String provider, int userId);
|
|
|
|
/**
|
|
* Returns true if the given package belongs to a location provider, and so should be afforded
|
|
* some special privileges.
|
|
*
|
|
* @param packageName The package name to check
|
|
* @return True is the given package belongs to a location provider, false otherwise
|
|
*/
|
|
public abstract boolean isProviderPackage(@NonNull String packageName);
|
|
|
|
/**
|
|
* Should only be used by GNSS code.
|
|
*/
|
|
// TODO: there is no reason for this to exist as part of any API. move all the logic into gnss
|
|
public abstract void sendNiResponse(int notifId, int userResponse);
|
|
}
|