Class OracleConfig
- java.lang.Object
-
- migratedb.v1.core.internal.database.oracle.OracleConfig
-
- All Implemented Interfaces:
ExtensionConfig
public final class OracleConfig extends Object implements ExtensionConfig
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOracleConfig.PropertiesConverter
-
Field Summary
Fields Modifier and Type Field Description static StringORACLE_KERBEROS_CACHE_FILEstatic StringORACLE_KERBEROS_CONFIG_FILEstatic StringORACLE_SQLPLUSstatic StringORACLE_SQLPLUS_WARNstatic StringORACLE_WALLET_LOCATION
-
Constructor Summary
Constructors Constructor Description OracleConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetKerberosCacheFile()Warning: Feature not implemented!StringgetKerberosConfigFile()Warning: Feature not implemented!StringgetWalletLocation()Warning: Feature not implemented!booleanisSqlplus()Warning: Feature not implemented!booleanisSqlplusWarn()Warning: Feature not implemented!OracleConfigkerberosCacheFile(String KerberosCacheFile)Warning: Feature not implemented!OracleConfigkerberosConfigFile(String KerberosConfigFile)Warning: Feature not implemented!voidsetKerberosCacheFile(String KerberosCacheFile)Warning: Feature not implemented!voidsetKerberosConfigFile(String KerberosConfigFile)Warning: Feature not implemented!voidsetSqlplus(boolean Sqlplus)Warning: Feature not implemented!voidsetSqlplusWarn(boolean SqlplusWarn)Warning: Feature not implemented!voidsetWalletLocation(String WalletLocation)Warning: Feature not implemented!OracleConfigsqlplus(boolean Sqlplus)Warning: Feature not implemented!OracleConfigsqlplusWarn(boolean SqlplusWarn)Warning: Feature not implemented!OracleConfigwalletLocation(String WalletLocation)Warning: Feature not implemented!
-
-
-
Field Detail
-
ORACLE_SQLPLUS
public static final String ORACLE_SQLPLUS
- See Also:
- Constant Field Values
-
ORACLE_SQLPLUS_WARN
public static final String ORACLE_SQLPLUS_WARN
- See Also:
- Constant Field Values
-
ORACLE_KERBEROS_CONFIG_FILE
public static final String ORACLE_KERBEROS_CONFIG_FILE
- See Also:
- Constant Field Values
-
ORACLE_KERBEROS_CACHE_FILE
public static final String ORACLE_KERBEROS_CACHE_FILE
- See Also:
- Constant Field Values
-
ORACLE_WALLET_LOCATION
public static final String ORACLE_WALLET_LOCATION
- See Also:
- Constant Field Values
-
-
Method Detail
-
isSqlplus
public boolean isSqlplus()
Warning: Feature not implemented!Whether MigrateDB's support for Oracle SQL*Plus commands should be activated.
- Returns:
trueto active SQL*Plus support.falseto fail fast instead. (default:false)
-
isSqlplusWarn
public boolean isSqlplusWarn()
Warning: Feature not implemented!Whether MigrateDB should issue a warning instead of an error whenever it encounters an Oracle SQL*Plus statement it doesn't yet support.
- Returns:
trueto issue a warning.falseto fail fast instead. (default:false)
-
getKerberosConfigFile
public String getKerberosConfigFile()
Warning: Feature not implemented!When Oracle needs to connect to a Kerberos service to authenticate, the location of the Kerberos configuration.
-
getKerberosCacheFile
public String getKerberosCacheFile()
Warning: Feature not implemented!When Oracle needs to connect to a Kerberos service to authenticate, the location of the Kerberos cache.
-
getWalletLocation
public String getWalletLocation()
Warning: Feature not implemented!The location of your Oracle wallet, used to automatically sign in to your databases.
-
setSqlplus
public void setSqlplus(boolean Sqlplus)
Warning: Feature not implemented!Whether MigrateDB's support for Oracle SQL*Plus commands should be activated.
- Parameters:
Sqlplus-trueto active SQL*Plus support.falseto fail fast instead. (default:false)
-
sqlplus
public OracleConfig sqlplus(boolean Sqlplus)
Warning: Feature not implemented!Whether MigrateDB's support for Oracle SQL*Plus commands should be activated.
- Parameters:
Sqlplus-trueto active SQL*Plus support.falseto fail fast instead. (default:false)
-
setSqlplusWarn
public void setSqlplusWarn(boolean SqlplusWarn)
Warning: Feature not implemented!Whether MigrateDB should issue a warning instead of an error whenever it encounters an Oracle SQL*Plus statement it doesn't yet support.
- Parameters:
SqlplusWarn-trueto issue a warning.falseto fail fast instead. (default:false)
-
sqlplusWarn
public OracleConfig sqlplusWarn(boolean SqlplusWarn)
Warning: Feature not implemented!Whether MigrateDB should issue a warning instead of an error whenever it encounters an Oracle SQL*Plus statement it doesn't yet support.
- Parameters:
SqlplusWarn-trueto issue a warning.falseto fail fast instead. (default:false)
-
setKerberosConfigFile
public void setKerberosConfigFile(String KerberosConfigFile)
Warning: Feature not implemented!When Oracle needs to connect to a Kerberos service to authenticate, the location of the Kerberos configuration.
-
kerberosConfigFile
public OracleConfig kerberosConfigFile(String KerberosConfigFile)
Warning: Feature not implemented!When Oracle needs to connect to a Kerberos service to authenticate, the location of the Kerberos configuration.
-
setKerberosCacheFile
public void setKerberosCacheFile(String KerberosCacheFile)
Warning: Feature not implemented!When Oracle needs to connect to a Kerberos service to authenticate, the location of the Kerberos cache.
-
kerberosCacheFile
public OracleConfig kerberosCacheFile(String KerberosCacheFile)
Warning: Feature not implemented!When Oracle needs to connect to a Kerberos service to authenticate, the location of the Kerberos cache.
-
setWalletLocation
public void setWalletLocation(String WalletLocation)
Warning: Feature not implemented!The location of your Oracle wallet, used to automatically sign in to your databases.
- Parameters:
WalletLocation- The path to your Oracle Wallet
-
walletLocation
public OracleConfig walletLocation(String WalletLocation)
Warning: Feature not implemented!The location of your Oracle wallet, used to automatically sign in to your databases.
- Parameters:
WalletLocation- The path to your Oracle Wallet
-
-