@Override
public void render(Row row, Object data) {
CustomerCommunication customerCommunication = (CustomerCommunication) data;
row.setValue(customerCommunication);
final CommunicationType type = customerCommunication.getCommunicationType();
final boolean reviewed = customerCommunication.getReviewed();
if(!customerCommunication.getReviewed()){
row.setSclass("communication-not-reviewed");
}