Annotation Interface PluginCanonicalWebUrl


@Target({PARAMETER,FIELD}) @Retention(RUNTIME) public @interface PluginCanonicalWebUrl
Annotation applied to a String containing the plugin canonical web URL.

A plugin or extension may receive this string by Guice injection to discover the canonical web URL under which the plugin is available:

  @Inject
  MyType(@PluginCanonicalWebUrl String myUrl) {
  ...
  }