Annotation Type PluginName


  • @Target({PARAMETER,FIELD})
    @Retention(RUNTIME)
    public @interface PluginName
    Annotation applied to a String containing the plugin or extension name.

    A plugin or extension may receive this string by Guice injection to discover the name that an administrator has installed the plugin or extension under:

      @Inject
      MyType(@PluginName String myName) {
      ...
      }