public void entityToDtoAndBackToEntityVoidByFilter(Object target, Object source, Object extra) {
swapDtoValues(target);
}
private void swapEntityValues(final Object targetE) {
final DomainObject entity = (DomainObject) targetE;
final String temp = entity.getValue2();
entity.setValue2(entity.getValue());
entity.setValue(temp);
entity.setTimestamp(new Date(System.currentTimeMillis() + 1000L));
}