package com.ctp.cdi.query; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Mark a method parameter as a query parameter. * Can be named by the annotation value. * * @author thomashug */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.PARAMETER) public @interface QueryParam { String value() default ""; }