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

oshi.annotation.SuppressForbidden Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2020-2023 The OSHI Project Contributors
 * SPDX-License-Identifier: MIT
 */
package oshi.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * This annotation exists to permit suppression in the Forbidden APIs check and also indicate to consumers of these
 * classes that they may need to handle these differently in their production code.
 */
@Retention(RetentionPolicy.CLASS)
@Target({ ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.METHOD, ElementType.TYPE })
public @interface SuppressForbidden {
    String reason();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy