package org.jboss.resteasy.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Must be placed on a DecoratorProcessor class to specify the supported types * * @author <a href="mailto:bill@burkecentral.com">Bill Burke</a> * @version $Revision: 1 $ * @see org.jboss.resteasy.spi.DecoratorProcessor * @see org.jboss.resteasy.annotations.Decorator */ @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) public @interface DecorateTypes { String[] value(); }