001package io.avaje.inject; 002 003import java.lang.annotation.*; 004 005/** Limits the types exposed by this bean to the given types. */ 006@Retention(RetentionPolicy.SOURCE) 007@Target({ElementType.METHOD, ElementType.TYPE}) 008public @interface BeanTypes { 009 010 Class<?>[] value(); 011}