package org.jboss.resteasy.annotations.providers.jackson;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

Author:Weinan Li
/** * @author <a href="mailto:l.weinan@gmail.com">Weinan Li</a> */
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface Formatted { }