
io.debezium.schema.DataCollectionId Maven / Gradle / Ivy
/*
* Copyright Debezium Authors.
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.debezium.schema;
/**
* Common contract for all identifiers of data collections (RDBMS tables, MongoDB collections etc.)
*
* @author Gunnar Morling
*/
public interface DataCollectionId {
/**
* Get the fully qualified identifier of the data collection.
*
* @return the collection's fully qualified identifier.
*/
String identifier();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy