| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace GreenTree.Nachtragsmanagement.Core.Plugins
- {
- /// <summary>
- /// Plugin finder
- /// </summary>
- public interface IPluginFinder
- {
- /// <summary>
- /// Gets plugin groups
- /// </summary>
- /// <returns>Plugins groups</returns>
- IEnumerable<string> GetPluginGroups();
- /// <summary>
- /// Gets plugins
- /// </summary>
- /// <typeparam name="T">The type of plugins to get.</typeparam>
- /// <param name="loadMode">Load plugins mode</param>
- /// <param name="storeId">Load records allowed only in a specified store; pass 0 to load all records</param>
- /// <param name="group">Filter by plugin group; pass null to load all records</param>
- /// <returns>Plugins</returns>
- IEnumerable<T> GetPlugins<T>(LoadPluginsMode loadMode = LoadPluginsMode.InstalledOnly,
- int storeId = 0, string group = null) where T : class, IPlugin;
- /// <summary>
- /// Get plugin descriptors
- /// </summary>
- /// <param name="loadMode">Load plugins mode</param>
- /// <param name="storeId">Load records allowed only in a specified store; pass 0 to load all records</param>
- /// <param name="group">Filter by plugin group; pass null to load all records</param>
- /// <returns>Plugin descriptors</returns>
- IEnumerable<PluginDescriptor> GetPluginDescriptors(LoadPluginsMode loadMode = LoadPluginsMode.InstalledOnly,
- int storeId = 0, string group = null);
- /// <summary>
- /// Get plugin descriptors
- /// </summary>
- /// <typeparam name="T">The type of plugin to get.</typeparam>
- /// <param name="loadMode">Load plugins mode</param>
- /// <param name="storeId">Load records allowed only in a specified store; pass 0 to load all records</param>
- /// <param name="group">Filter by plugin group; pass null to load all records</param>
- /// <returns>Plugin descriptors</returns>
- IEnumerable<PluginDescriptor> GetPluginDescriptors<T>(LoadPluginsMode loadMode = LoadPluginsMode.InstalledOnly,
- int storeId = 0, string group = null) where T : class, IPlugin;
- /// <summary>
- /// Get a plugin descriptor by its system name
- /// </summary>
- /// <param name="systemName">Plugin system name</param>
- /// <param name="loadMode">Load plugins mode</param>
- /// <returns>>Plugin descriptor</returns>
- PluginDescriptor GetPluginDescriptorBySystemName(string systemName, LoadPluginsMode loadMode = LoadPluginsMode.InstalledOnly);
- /// <summary>
- /// Get a plugin descriptor by its system name
- /// </summary>
- /// <typeparam name="T">The type of plugin to get.</typeparam>
- /// <param name="systemName">Plugin system name</param>
- /// <param name="loadMode">Load plugins mode</param>
- /// <returns>>Plugin descriptor</returns>
- PluginDescriptor GetPluginDescriptorBySystemName<T>(string systemName, LoadPluginsMode loadMode = LoadPluginsMode.InstalledOnly)
- where T : class, IPlugin;
- /// <summary>
- /// Reload plugins
- /// </summary>
- void ReloadPlugins();
- }
- }
|