Package org.apache.flink.table.factories
Class TableSourceFactoryContextImpl
- java.lang.Object
-
- org.apache.flink.table.factories.TableSourceFactoryContextImpl
-
- All Implemented Interfaces:
TableSourceFactory.Context
@Deprecated @Internal public class TableSourceFactoryContextImpl extends Object implements TableSourceFactory.Context
Deprecated.Implementation ofTableSourceFactory.Context.
-
-
Constructor Summary
Constructors Constructor Description TableSourceFactoryContextImpl(ObjectIdentifier identifier, CatalogTable table, org.apache.flink.configuration.ReadableConfig config, boolean isTemporary)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description org.apache.flink.configuration.ReadableConfiggetConfiguration()Deprecated.ObjectIdentifiergetObjectIdentifier()Deprecated.CatalogTablegetTable()Deprecated.booleanisTemporary()Deprecated.Whether the table is temporary.
-
-
-
Constructor Detail
-
TableSourceFactoryContextImpl
public TableSourceFactoryContextImpl(ObjectIdentifier identifier, CatalogTable table, org.apache.flink.configuration.ReadableConfig config, boolean isTemporary)
Deprecated.
-
-
Method Detail
-
getObjectIdentifier
public ObjectIdentifier getObjectIdentifier()
Deprecated.- Specified by:
getObjectIdentifierin interfaceTableSourceFactory.Context- Returns:
- full identifier of the given
CatalogTable.
-
getTable
public CatalogTable getTable()
Deprecated.- Specified by:
getTablein interfaceTableSourceFactory.Context- Returns:
- table
CatalogTableinstance.
-
getConfiguration
public org.apache.flink.configuration.ReadableConfig getConfiguration()
Deprecated.- Specified by:
getConfigurationin interfaceTableSourceFactory.Context- Returns:
- readable config of this table environment. The configuration gives the ability to
access
TableConfig#getConfiguration()which holds the currentTableEnvironmentsession configurations.
-
isTemporary
public boolean isTemporary()
Deprecated.Description copied from interface:TableSourceFactory.ContextWhether the table is temporary.- Specified by:
isTemporaryin interfaceTableSourceFactory.Context
-
-