mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 05:01:07 +00:00
Move backendType/name into constant
This commit is contained in:
@ -56,6 +56,8 @@ public class RDBMSBackendModule implements QBackendModuleInterface
|
||||
{
|
||||
private static final QLogger LOG = QLogger.getLogger(RDBMSBackendModule.class);
|
||||
|
||||
public static final String NAME = "rdbms";
|
||||
|
||||
static
|
||||
{
|
||||
QBackendModuleDispatcher.registerBackendModule(new RDBMSBackendModule());
|
||||
@ -66,7 +68,7 @@ public class RDBMSBackendModule implements QBackendModuleInterface
|
||||
*******************************************************************************/
|
||||
public String getBackendType()
|
||||
{
|
||||
return ("rdbms");
|
||||
return NAME;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user