001/*
002 * ============================================================================
003 * Copyright © 2002-2022 by Thomas Thrien.
004 * All Rights Reserved.
005 * ============================================================================
006 * Licensed to the public under the agreements of the GNU Lesser General Public
007 * License, version 3.0 (the "License"). You may obtain a copy of the License at
008 *
009 *      http://www.gnu.org/licenses/lgpl.html
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
013 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
014 * License for the specific language governing permissions and limitations
015 * under the License.
016 */
017
018package org.tquadrat.foundation.mgmt;
019
020import static org.apiguardian.api.API.Status.STABLE;
021
022import java.lang.annotation.Documented;
023import java.lang.annotation.ElementType;
024import java.lang.annotation.Inherited;
025import java.lang.annotation.Retention;
026import java.lang.annotation.RetentionPolicy;
027import java.lang.annotation.Target;
028
029import org.apiguardian.api.API;
030import org.tquadrat.foundation.annotation.ClassVersion;
031
032/**
033 *  This annotation will be used to declare more than one MBean notification
034 *  for a class or a method.
035 *
036 *  @see MBeanNotification
037 *
038 *  @extauthor Thomas Thrien - thomas.thrien@tquadrat.org
039 *  @version $Id: MBeanNotifications.java 995 2022-01-23 01:09:35Z tquadrat $
040 *  @since 0.0.1
041 */
042@ClassVersion( sourceVersion = "$Id: MBeanNotifications.java 995 2022-01-23 01:09:35Z tquadrat $" )
043@API( status = STABLE, since = "0.0.1" )
044@Documented
045@Retention( RetentionPolicy.RUNTIME )
046@Target( ElementType.METHOD )
047@Inherited
048public @interface MBeanNotifications
049{
050        /*------------*\
051    ====** Attributes **=======================================================
052        \*------------*/
053    /**
054     *  Returns the notification declarations.
055     *
056     *  @return The notification declarations.
057     */
058    MBeanNotification[] value ();
059}
060//  @interface MBeanNotifications
061
062/*
063 *  End of File
064 */