Class ConsoleDataStoreFactory

java.lang.Object
io.antmedia.console.datastore.ConsoleDataStoreFactory
All Implemented Interfaces:
Aware, ApplicationContextAware

public class ConsoleDataStoreFactory extends Object implements ApplicationContextAware
  • Field Details

    • dataStore

      private AbstractConsoleDataStore dataStore
    • appName

      @Value("${db.app.name:#{null}}") private String appName
    • dbName

      @Value("${db.name:#{null}}") private String dbName
    • dbType

      @Value("${db.type:#{null}}") private String dbType
    • dbHost

      @Value("${db.host:#{null}}") private String dbHost
    • dbUser

      @Deprecated(since="2.7.0", forRemoval=true) @Value("${db.user:#{null}}") private String dbUser
      Deprecated, for removal: This API element is subject to removal in a future version.
      Use dbHost with full connection url including username and password
    • dbPassword

      @Deprecated(since="2.7.0", forRemoval=true) @Value("${db.password:#{null}}") private String dbPassword
      Deprecated, for removal: This API element is subject to removal in a future version.
      Use dbHost with full connection url including username and password
    • vertx

      private io.vertx.core.Vertx vertx
    • logger

      private static org.slf4j.Logger logger
  • Constructor Details

    • ConsoleDataStoreFactory

      public ConsoleDataStoreFactory()
  • Method Details