org.jboss.resteasy.client.ClientURI Maven / Gradle / Ivy
package org.jboss.resteasy.client;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Used to annotate a predefined URL (as opposed to a @PathParam /@QueryParam)
* in a Proxied client.
*
* For Example:
*
*
* @author Solomon
* @version $Revision: 1 $
* {@literal @}GET MyDTO getDTO(@ClientURI String uri);
*/
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface ClientURI
{
}