53 lines
1.7 KiB
Java
53 lines
1.7 KiB
Java
/*
|
|
* Copyright (C) 2022 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.annotation;
|
|
|
|
import static java.lang.annotation.ElementType.METHOD;
|
|
import static java.lang.annotation.RetentionPolicy.CLASS;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* Documents that the subject method's job is to look
|
|
* up whether the provided or calling uid/pid has the requested permission.
|
|
*
|
|
* <p>Methods should either return `void`, but potentially throw {@link SecurityException},
|
|
* or return {@link android.content.pm.PackageManager.PermissionResult} `int`.
|
|
*
|
|
* @hide
|
|
*/
|
|
@Retention(CLASS)
|
|
@Target({METHOD})
|
|
public @interface PermissionMethod {
|
|
/**
|
|
* Hard-coded list of permissions checked by this method
|
|
*/
|
|
@PermissionName String[] value() default {};
|
|
/**
|
|
* If true, the check passes if the caller
|
|
* has any ONE of the supplied permissions
|
|
*/
|
|
boolean anyOf() default false;
|
|
/**
|
|
* Signifies that the permission check passes if
|
|
* the calling process OR the current process has
|
|
* the permission
|
|
*/
|
|
boolean orSelf() default false;
|
|
}
|