/**
  * The Status database where the status table can be found.
  *
  * @return String database
  */
 public static String getStatusDatabase() {
   return DatabaseNames.getCoreDatabase();
 }
 /**
  * The Privilege Tool Feature Access database where the privilege_tool_feature_access table can be
  * found.
  *
  * @return String database
  */
 public static String getPrivilegeToolFeatureAccessDatabase() {
   return DatabaseNames.getCoreDatabase();
 }
 /**
  * The Ingredient database where the Ingredient table can be found.
  *
  * @return String database
  */
 public static String getIngredientDatabase() {
   return DatabaseNames.getCoreDatabase();
 }
 /**
  * The Privilege database where the privilege table can be found.
  *
  * @return String database
  */
 public static String getPrivilegeDatabase() {
   return DatabaseNames.getCoreDatabase();
 }
 /**
  * The recipe database where the recipe table can be found.
  *
  * @return String database
  */
 public static String getRecipeDatabase() {
   return DatabaseNames.getCoreDatabase();
 }