Interface IssueProviderFactories

  • All Known Implementing Classes:
    IssueProviderFactoriesImpl

    public interface IssueProviderFactories
    Created with IntelliJ IDEA.
    Author:
    Oleg Rybak (oleg.rybak@jetbrains.com)
    • Method Detail

      • getAvailableFactoryTypes

        @NotNull
        Map<String,​IssueProviderType> getAvailableFactoryTypes()
        Scans plugins for extensions of type IssueProviderFactory. Returns found ones
        Returns:
        available Issue provider factories
      • getFactoryOfType

        @Nullable
        @Contract("null -> null")
        IssueProviderFactory getFactoryOfType​(@Nullable
                                              String factoryType)
        Searches available issue provider factories for given factory type
        Parameters:
        factoryType - factory type
        Returns:
        corresponding issue provider factory, if there is one, null otherwise