Project

General

Profile

« Previous | Next » 

Revision 89dc9826

Added by Andreas Müller almost 3 years ago

cleanup

View differences:

cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/dto/DistributionInfoDTO.java
16 16
/**
17 17
 * @author a.kohlbecker
18 18
 * @since Jan 29, 2014
19
 *
20 19
 */
21 20
public class DistributionInfoDTO {
22 21

  
23

  
24 22
    private CondensedDistribution condensedDistribution = null;
25 23
    private DistributionTree tree = null;
26 24
    private String mapUriParams = null;
27 25
    private Set<Distribution> elements = null;
28 26

  
29 27

  
30
    /**
31
     * @param condensedDistribution the condensedDistribution to set
32
     */
28
    public CondensedDistribution getCondensedDistribution() {
29
        return condensedDistribution;
30
    }
33 31
    public void setCondensedDistribution(CondensedDistribution condensedDistribution) {
34 32
        this.condensedDistribution = condensedDistribution;
35 33
    }
36
    /**
37
     * @param tree the tree to set
38
     */
39
    public void setTree(DistributionTree tree) {
40
        this.tree = tree;
41
    }
42
    /**
43
     * @param mapUriParams the mapUriParams to set
44
     */
45
    public void setMapUriParams(String mapUriParams) {
46
        this.mapUriParams = mapUriParams;
47
    }
48
    /**
49
     * @param elements the elements to set
50
     */
51
    public void setElements(Set<Distribution> elements) {
52
        this.elements = elements;
53
    }
54 34

  
55
    /**
56
     * @return the condensedDistribution
57
     */
58
    public CondensedDistribution getCondensedDistribution() {
59
        return condensedDistribution;
60
    }
61
    /**
62
     * @return the tree
63
     */
64 35
    public DistributionTree getTree() {
65 36
        return tree;
66 37
    }
67
    /**
68
     * @return the mapUriParams
69
     */
38
    public void setTree(DistributionTree tree) {
39
        this.tree = tree;
40
    }
41

  
70 42
    public String getMapUriParams() {
71 43
        return mapUriParams;
72 44
    }
73
    /**
74
     * @return the elements
75
     */
45
    public void setMapUriParams(String mapUriParams) {
46
        this.mapUriParams = mapUriParams;
47
    }
48

  
76 49
    public Set<Distribution> getElements() {
77 50
        return elements;
51
    }    public void setElements(Set<Distribution> elements) {
52
        this.elements = elements;
78 53
    }
79 54

  
80 55
    public enum InfoPart{
......
83 58
        mapUriParams,
84 59
        elements,
85 60
    }
86

  
87

  
88
}
61
}

Also available in: Unified diff