com.twitter.finatra.json.annotations.CamelCaseMapper Maven / Gradle / Ivy
The newest version!
package com.twitter.finatra.json.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import javax.inject.Qualifier;
/**
* A Google Guice
* Binding Annotations With Finatra
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
@Qualifier
public @interface CamelCaseMapper {}