Add method to get all plugins (helpful if you want to reset them)

This commit is contained in:
2025-05-27 11:33:08 -05:00
parent 8b6f4b635a
commit 4b9e8e0c51
2 changed files with 22 additions and 0 deletions

View File

@ -1506,6 +1506,17 @@ public class QInstanceEnricher
/*******************************************************************************
** Getter for enricherPlugins
**
*******************************************************************************/
public static ListingHash<Class<?>, QInstanceEnricherPluginInterface<?>> getEnricherPlugins()
{
return enricherPlugins;
}
/***************************************************************************
** scan the classpath for classes in the specified package name which
** implement the QInstanceEnricherPluginInterface - any found get added

View File

@ -304,6 +304,17 @@ public class QInstanceValidator
/*******************************************************************************
** Getter for validatorPlugins
**
*******************************************************************************/
public static ListingHash<Class<?>, QInstanceValidatorPluginInterface<?>> getValidatorPlugins()
{
return validatorPlugins;
}
/*******************************************************************************
**
*******************************************************************************/