Package org.apache.hop.core
Interface IProvidesDatabaseConnectionInformation
-
- All Known Subinterfaces:
IProvidesModelerMeta
public interface IProvidesDatabaseConnectionInformationAn interface for pipeline transforms that connect to a database table. For example a table output transform or a bulk loader.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DatabaseMetagetDatabaseMeta()Returns the database meta for this transformStringgetMissingDatabaseConnectionInformationMessage()Provides a way for this object to return a custom message when database connection information is incomplete or missing.StringgetSchemaName()Returns the schema name for this transform.StringgetTableName()Returns the table name for this transform
-
-
-
Method Detail
-
getDatabaseMeta
DatabaseMeta getDatabaseMeta()
Returns the database meta for this transform- Returns:
-
getTableName
String getTableName()
Returns the table name for this transform- Returns:
-
getSchemaName
String getSchemaName()
Returns the schema name for this transform.- Returns:
-
getMissingDatabaseConnectionInformationMessage
String getMissingDatabaseConnectionInformationMessage()
Provides a way for this object to return a custom message when database connection information is incomplete or missing. If this returnsnulla default message will be displayed for missing information.- Returns:
- A friendly message that describes that database connection information is missing and, potentially, why.
-
-