Interface ColumnNamingStrategy

All Known Implementing Classes:
DefaultColumnNamingStrategy

public interface ColumnNamingStrategy
A pluggable strategy contract for defining how column names are resolved from kafka fields.
Author:
Chris Cranford
  • Method Summary

    Modifier and Type
    Method
    Description
    Resolves the logical field name from the change event to a column name.
  • Method Details

    • resolveColumnName

      String resolveColumnName(String fieldName)
      Resolves the logical field name from the change event to a column name.
      Parameters:
      fieldName - the field name, should not be null.
      Returns:
      the resolved logical column name, never null.