All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.debezium.connector.jdbc.naming.ColumnNamingStrategy 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.connector.jdbc.naming;

/**
 * A pluggable strategy contract for defining how column names are resolved from kafka fields.
 *
 * @author Chris Cranford
 */
public interface ColumnNamingStrategy {
    /**
     * Resolves the logical field name from the change event to a column name.
     *
     * @param fieldName the field name, should not be {@code null}.
     * @return the resolved logical column name, never {@code null}.
     */
    String resolveColumnName(String fieldName);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy