Project

General

Profile

« Previous | Next » 

Revision bce2d0e5

Added by Katja Luther almost 2 years ago

fix 10084: fix problem with missing taxonuuid in dto

View differences:

cdmlib-persistence/src/main/java/eu/etaxonomy/cdm/persistence/dto/TaxonNodeDto.java
92 92
        super(uuid, id, nameTitleCache, taxonTitleCache);
93 93

  
94 94
    }
95
    public TaxonNodeDto(UUID uuid, Integer id, String treeIndex, String nameTitleCache, String taxonTitleCache, Integer rankOrderIndex, UUID parentUuid, Integer sortIndex, UUID classificationUuid, Boolean taxonIsPublished, TaxonNodeStatus status, List<LanguageString> statusNote){
95
    public TaxonNodeDto(UUID uuid, Integer id, UUID taxonUuid, String treeIndex, String nameTitleCache, String taxonTitleCache, Integer rankOrderIndex, UUID parentUuid, Integer sortIndex, UUID classificationUuid, Boolean taxonIsPublished, TaxonNodeStatus status, List<LanguageString> statusNote){
96 96
    	this(uuid, id, treeIndex, nameTitleCache, taxonTitleCache, rankOrderIndex, parentUuid, sortIndex, classificationUuid);
97 97
    	this.status = status;
98 98
    	this.taxonIsPublish = taxonIsPublished;
99 99
    	for (LanguageString str: statusNote) {
100 100
    		this.statusNote.put(str.getLanguage(), str.getText());
101 101
    	}
102
	this.taxonUuid = taxonUuid;
102 103
    }
103 104

  
104 105
    public TaxonNodeDto(UUID uuid, Integer id, String treeIndex, String nameTitleCache, String taxonTitleCache, Integer rankOrderIndex, UUID parentUuid, Integer sortIndex, UUID classificationUuid) {

Also available in: Unified diff