001/* 002 * CDDL HEADER START 003 * 004 * The contents of this file are subject to the terms of the 005 * Common Development and Distribution License, Version 1.0 only 006 * (the "License"). You may not use this file except in compliance 007 * with the License. 008 * 009 * You can obtain a copy of the license at 010 * http://www.opensource.org/licenses/cddl1.php. 011 * See the License for the specific language governing permissions 012 * and limitations under the License. 013 * 014 * When distributing Covered Code, include this CDDL HEADER in each 015 * file. If applicable, add the following below this CDDL HEADER, 016 * with the fields enclosed by brackets "[]" replaced with your own 017 * identifying information: 018 * Portions Copyright [yyyy] [name of copyright owner] 019 * 020 * CDDL HEADER END 021 * 022 * 023 * Copyright 2010-2017 Ping Identity Corporation 024 */ 025package com.unboundid.directory.sdk.broker.internal; 026 027 028 029import java.lang.annotation.Documented; 030import java.lang.annotation.ElementType; 031import java.lang.annotation.Inherited; 032import java.lang.annotation.Retention; 033import java.lang.annotation.RetentionPolicy; 034import java.lang.annotation.Target; 035 036 037/** 038 * This annotation type may be used to indicate that the marked class represents 039 * an API that can be used to create an extension for use in the Broker. 040 */ 041@Documented() 042@Retention(RetentionPolicy.RUNTIME) 043@Target({ ElementType.TYPE }) 044@Inherited() 045public @interface BrokerExtension 046{ 047 /** 048 * A set of notes about the usage of this API in the Broker. 049 * 050 * @return Notes about the usage of this API in the Broker 051 */ 052 String notes() default ""; 053}