View Javadoc
1   package com.atlassian.dbexporter;
2   
3   public interface EntityNameProcessor {
4       /**
5        * Processes the table name
6        *
7        * @param table the table name before processing
8        * @return the table name after processing
9        */
10      String tableName(String table);
11  
12      /**
13       * Processes the column name
14       *
15       * @param column the column name before processing
16       * @return the column name after processing
17       */
18      String columnName(String column);
19  }