183N/A/*
2362N/A * Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
268N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
268N/A *
268N/A * This code is free software; you can redistribute it and/or modify it
268N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
268N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
268N/A *
268N/A * This code is distributed in the hope that it will be useful, but WITHOUT
268N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
268N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
268N/A * version 2 for more details (a copy is included in the LICENSE file that
268N/A * accompanied this code).
268N/A *
268N/A * You should have received a copy of the GNU General Public License version
268N/A * 2 along with this work; if not, write to the Free Software Foundation,
268N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
268N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
183N/A */
183N/A
183N/Apackage com.sun.tracing.dtrace;
183N/A
183N/Aimport java.lang.annotation.Target;
183N/Aimport java.lang.annotation.Retention;
183N/Aimport java.lang.annotation.RetentionPolicy;
183N/Aimport java.lang.annotation.ElementType;
183N/A
183N/A/**
183N/A * This annotation is used to describe the interface attributes of the
183N/A * {@code provider} field for a single provider.
183N/A *
183N/A * This annotation can be added to a user-defined Provider specification
183N/A * interface to set the stability attributes of the {@code provider} field for
183N/A * all probes specified in that provider.
183N/A * <p>
183N/A * If this annotation is not present, the interface attributes for the
183N/A * {@code provider} field will be Private/Private/Unknown.
183N/A * <p>
183N/A * @see <a href="http://docs.sun.com/app/docs/doc/817-6223/6mlkidlnp?a=view">Solaris Dynamic Tracing Guide, Chapter 39: Stability</a>
183N/A * @since 1.7
183N/A */
183N/A@Retention(RetentionPolicy.RUNTIME)
183N/A@Target({ ElementType.TYPE })
183N/Apublic @interface ProviderAttributes {
183N/A Attributes value();
183N/A}