Package io.debezium.spi.schema
Interface DataCollectionId
public interface DataCollectionId
Common contract for all identifiers of data collections (RDBMS tables, MongoDB collections etc.)
- Author:
- Gunnar Morling
-
Method Summary
Modifier and TypeMethodDescriptionGet a database list including database, table name.Get the fully qualified identifier of the data collection.parts()Get all elements of the data collection.Get a schema list including schema, table name.
-
Method Details
-
identifier
String identifier()Get the fully qualified identifier of the data collection.- Returns:
- the collection's fully qualified identifier.
-
parts
Get all elements of the data collection. -
databaseParts
Get a database list including database, table name. -
schemaParts
Get a schema list including schema, table name.
-