mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +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);
|
private static final QLogger LOG = QLogger.getLogger(RDBMSBackendModule.class);
|
||||||
|
|
||||||
|
public static final String NAME = "rdbms";
|
||||||
|
|
||||||
static
|
static
|
||||||
{
|
{
|
||||||
QBackendModuleDispatcher.registerBackendModule(new RDBMSBackendModule());
|
QBackendModuleDispatcher.registerBackendModule(new RDBMSBackendModule());
|
||||||
@ -66,7 +68,7 @@ public class RDBMSBackendModule implements QBackendModuleInterface
|
|||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
public String getBackendType()
|
public String getBackendType()
|
||||||
{
|
{
|
||||||
return ("rdbms");
|
return NAME;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user