Skip to content

Instantly share code, notes, and snippets.

@lefloh
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save lefloh/ba5673008866de2c5579 to your computer and use it in GitHub Desktop.

Select an option

Save lefloh/ba5673008866de2c5579 to your computer and use it in GitHub Desktop.
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Linked {
Class<?> resource();
String method() default "";
String rel() default "";
}
@Linked(resource = BrandsResource.class, method = "getBrand", rel = "brand")
public class Brand {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment