*/
public static void processConfiguration(HtmlColumn column, HtmlTable table) {
if(column.getColumnConfiguration().getConfigurations() != null){
for(Entry<ConfigToken<?>, Object> entry : column.getColumnConfiguration().getConfigurations().entrySet()) {
ConfigurationProcessor columnProcessor = (ConfigurationProcessor) entry.getKey().getProcessor();
columnProcessor.process(entry, column.getColumnConfiguration(), table.getTableConfiguration());
}
// Merging staging configuration into to the final configuration map
column.getColumnConfiguration().getConfigurations()
.putAll(column.getColumnConfiguration().getStagingConfigurations());