public CopyFieldDTO(CopyField copyField) {
   this.copyFieldId = copyField.getId();
   this.indexFieldSourceModel = new EntityModel<IndexField>(copyField.getIndexFieldSource());
   this.indexFieldDestModel = new EntityModel<IndexField>(copyField.getIndexFieldDest());
   this.maxChars = copyField.getMaxChars();
   this.sourceAllFields = copyField.isSourceAllFields();
 }