Class GlobalConfiguration

java.lang.Object
liquibase.GlobalConfiguration
liquibase.configuration.GlobalConfiguration
All Implemented Interfaces:
AutoloadedConfigurations, ConfigurationContainer

public class GlobalConfiguration extends GlobalConfiguration implements ConfigurationContainer
Deprecated.
  • Field Details

    • SHOULD_RUN

      public static final String SHOULD_RUN
      Deprecated.
    • DATABASECHANGELOG_TABLE_NAME

      public static final String DATABASECHANGELOG_TABLE_NAME
      Deprecated.
    • DATABASECHANGELOGLOCK_TABLE_NAME

      public static final String DATABASECHANGELOGLOCK_TABLE_NAME
      Deprecated.
    • LIQUIBASE_TABLESPACE_NAME

      public static final String LIQUIBASE_TABLESPACE_NAME
      Deprecated.
    • LIQUIBASE_CATALOG_NAME

      public static final String LIQUIBASE_CATALOG_NAME
      Deprecated.
    • LIQUIBASE_SCHEMA_NAME

      public static final String LIQUIBASE_SCHEMA_NAME
      Deprecated.
    • OUTPUT_LINE_SEPARATOR

      public static final String OUTPUT_LINE_SEPARATOR
      Deprecated.
    • OUTPUT_ENCODING

      public static final String OUTPUT_ENCODING
      Deprecated.
    • CHANGELOGLOCK_WAIT_TIME

      public static final String CHANGELOGLOCK_WAIT_TIME
      Deprecated.
    • CHANGELOGLOCK_POLL_RATE

      public static final String CHANGELOGLOCK_POLL_RATE
      Deprecated.
    • CONVERT_DATA_TYPES

      public static final String CONVERT_DATA_TYPES
      Deprecated.
    • GENERATE_CHANGESET_CREATED_VALUES

      public static final String GENERATE_CHANGESET_CREATED_VALUES
      Deprecated.
    • AUTO_REORG

      public static final String AUTO_REORG
      Deprecated.
    • DIFF_COLUMN_ORDER

      public static final String DIFF_COLUMN_ORDER
      Deprecated.
    • ALWAYS_OVERRIDE_STORED_LOGIC_SCHEMA

      public static final String ALWAYS_OVERRIDE_STORED_LOGIC_SCHEMA
      Deprecated.
    • GENERATED_CHANGESET_IDS_INCLUDE_DESCRIPTION

      public static final String GENERATED_CHANGESET_IDS_INCLUDE_DESCRIPTION
      Deprecated.
    • INCLUDE_CATALOG_IN_SPECIFICATION

      public static final String INCLUDE_CATALOG_IN_SPECIFICATION
      Deprecated.
    • SHOULD_SNAPSHOT_DATA

      public static final String SHOULD_SNAPSHOT_DATA
      Deprecated.
    • FILTER_LOG_MESSAGES

      public static final String FILTER_LOG_MESSAGES
      Deprecated.
    • HEADLESS

      public static final String HEADLESS
      Deprecated.
  • Constructor Details

    • GlobalConfiguration

      public GlobalConfiguration()
      Deprecated.
  • Method Details

    • getShouldRun

      public boolean getShouldRun()
      Deprecated.
      Should Liquibase execute
    • setShouldRun

      public GlobalConfiguration setShouldRun(boolean shouldRun)
      Deprecated.
    • getDatabaseChangeLogTableName

      public String getDatabaseChangeLogTableName()
      Deprecated.
      Table name to use for DATABASECHANGELOG
    • setDatabaseChangeLogTableName

      public GlobalConfiguration setDatabaseChangeLogTableName(String name)
      Deprecated.
    • getDatabaseChangeLogLockTableName

      public String getDatabaseChangeLogLockTableName()
      Deprecated.
      Table name to use for DATABASECHANGELOGLOCK
    • setDatabaseChangeLogLockTableName

      public GlobalConfiguration setDatabaseChangeLogLockTableName(String name)
      Deprecated.
    • getDatabaseChangeLogLockWaitTime

      public Long getDatabaseChangeLogLockWaitTime()
      Deprecated.
      Wait time (in minutes) to wait to receive the changelog lock before giving up.
    • setDatabaseChangeLogLockWaitTime

      public GlobalConfiguration setDatabaseChangeLogLockWaitTime(Long minutes)
      Deprecated.
    • getDatabaseChangeLogLockPollRate

      public Long getDatabaseChangeLogLockPollRate()
      Deprecated.
      Wait time (in seconds) between polling requests to the changelog lock system.
    • setDatabaseChangeLogLockPollRate

      public GlobalConfiguration setDatabaseChangeLogLockPollRate(Long seconds)
      Deprecated.
    • getLiquibaseTablespaceName

      public String getLiquibaseTablespaceName()
      Deprecated.
      Name of the tablespace to use for liquibase database objects
    • setLiquibaseTablespaceName

      public GlobalConfiguration setLiquibaseTablespaceName(String name)
      Deprecated.
    • getShouldSnapshotData

      public boolean getShouldSnapshotData()
      Deprecated.
      Should Liquibase snapshot data for table by default
    • setShouldSnapshotData

      public GlobalConfiguration setShouldSnapshotData(boolean shouldSnapshotData)
      Deprecated.
    • getShouldFilterLogMessages

      public boolean getShouldFilterLogMessages()
      Deprecated.
      always returns "false"
    • setShouldFilterLogMessages

      public GlobalConfiguration setShouldFilterLogMessages(boolean ignored)
      Deprecated.
      ignores value
    • getHeadless

      public boolean getHeadless()
      Deprecated.
    • setHeadless

      public GlobalConfiguration setHeadless(boolean headless)
      Deprecated.
    • getLiquibaseCatalogName

      public String getLiquibaseCatalogName()
      Deprecated.
      Name of the catalog to use for liquibase database objects
    • setLiquibaseCatalogName

      public GlobalConfiguration setLiquibaseCatalogName(String name)
      Deprecated.
    • getLiquibaseSchemaName

      public String getLiquibaseSchemaName()
      Deprecated.
      Name of the schema to use for liquibase database objects
    • setLiquibaseSchemaName

      public GlobalConfiguration setLiquibaseSchemaName(String name)
      Deprecated.
    • getOutputLineSeparator

      public String getOutputLineSeparator()
      Deprecated.
      Line separator to use in output
    • setOutputLineSeparator

      public GlobalConfiguration setOutputLineSeparator(String name)
      Deprecated.
    • getOutputEncoding

      public String getOutputEncoding()
      Deprecated.
      String encoding to use in output.
    • setOutputEncoding

      public GlobalConfiguration setOutputEncoding(String name)
      Deprecated.
    • getDiffColumnOrder

      public Boolean getDiffColumnOrder()
      Deprecated.
    • setDiffColumnOrder

      public GlobalConfiguration setDiffColumnOrder(boolean diff)
      Deprecated.
    • getAlwaysOverrideStoredLogicSchema

      public Boolean getAlwaysOverrideStoredLogicSchema()
      Deprecated.
    • setAlwaysOverrideStoredLogicSchema

      public GlobalConfiguration setAlwaysOverrideStoredLogicSchema(boolean override)
      Deprecated.
    • getGeneratedChangeSetIdsContainDescription

      public Boolean getGeneratedChangeSetIdsContainDescription()
      Deprecated.
    • setGeneratedChangeSetIdsContainDescription

      public GlobalConfiguration setGeneratedChangeSetIdsContainDescription(boolean containDescription)
      Deprecated.
    • getProperty

      public ConfigurationProperty getProperty(String propertyName)
      Deprecated.
      Specified by:
      getProperty in interface ConfigurationContainer
    • getProperties

      public Set<ConfigurationProperty> getProperties()
      Deprecated.
      Specified by:
      getProperties in interface ConfigurationContainer
    • getValue

      public <T> T getValue(String propertyName, Class<T> returnType)
      Deprecated.
      Specified by:
      getValue in interface ConfigurationContainer
    • setValue

      public void setValue(String propertyName, Object value)
      Deprecated.
      Specified by:
      setValue in interface ConfigurationContainer
    • getNamespace

      public String getNamespace()
      Deprecated.
      Specified by:
      getNamespace in interface ConfigurationContainer