ref #5973: add new preference predicate for description handling in
[cdmlib.git] / cdmlib-services / src / main / java / eu / etaxonomy / cdm / api / service / dto / TaxonDescriptionDTO.java
1 /**
2 * Copyright (C) 2018 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.cdm.api.service.dto;
10
11 import java.io.Serializable;
12 import java.util.HashSet;
13 import java.util.Set;
14 import java.util.UUID;
15
16 import eu.etaxonomy.cdm.model.description.DescriptionElementBase;
17 import eu.etaxonomy.cdm.model.description.Distribution;
18 import eu.etaxonomy.cdm.model.description.TaxonDescription;
19 import eu.etaxonomy.cdm.model.taxon.Taxon;
20
21 /**
22 * @author k.luther
23 * @since 30.11.2018
24 *
25 */
26 public class TaxonDescriptionDTO implements Serializable{
27
28 private static final long serialVersionUID = -4440059497898077690L;
29 UUID taxonUUID;
30 Set<TaxonDescription> descriptions = new HashSet();
31
32 public TaxonDescriptionDTO(Taxon taxon, boolean alwaysUseDefault){
33 this.taxonUUID = taxon.getUuid();
34
35 for (TaxonDescription desc: taxon.getDescriptions()){
36 if (desc.isDefault()) {
37 descriptions.add(desc);
38 }
39 }
40 if (descriptions.isEmpty() || !alwaysUseDefault) {
41 for (TaxonDescription desc: taxon.getDescriptions()){
42 if (desc.isComputed()) {
43 continue;
44 }
45 for (DescriptionElementBase element: desc.getElements()){
46 if (element instanceof Distribution){
47 descriptions.add(desc);
48 }
49
50 }
51 }
52 }
53 }
54
55
56
57
58 /**
59 * @return the descriptions
60 */
61 public Set<TaxonDescription> getDescriptions() {
62 return descriptions;
63 }
64
65 /**
66 * @param descriptions the descriptions to set
67 */
68 public void setDescriptions(Set<TaxonDescription> descriptions) {
69 this.descriptions = descriptions;
70 }
71
72 /**
73 * @return the taxonUUID
74 */
75 public UUID getTaxonUUID() {
76 return taxonUUID;
77 }
78
79 /**
80 * @param taxonUUID the taxonUUID to set
81 */
82 public void setTaxonUUID(UUID taxonUUID) {
83 this.taxonUUID = taxonUUID;
84 }
85
86
87
88
89
90
91 }