Project

General

Profile

Download (1.36 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2015 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.io.specimen.abcd206.in;
10

    
11
import org.w3c.dom.NodeList;
12

    
13
import eu.etaxonomy.cdm.common.URI;
14

    
15
/**
16
 * Wrapper class which hold the list of associated units and
17
 * the parameters of the association.
18
 * @author pplitzner
19
 * @since Jun 24, 2015
20
 */
21
public class UnitAssociationWrapper {
22

    
23
    private NodeList associatedUnits;
24
    private URI accesPoint;
25
    private String associationType;
26
    private String prefix;
27

    
28
    public NodeList getAssociatedUnits() {
29
        return associatedUnits;
30
    }
31
    public void setAssociatedUnits(NodeList associatedUnits) {
32
        this.associatedUnits = associatedUnits;
33
    }
34

    
35
    public String getAssociationType() {
36
        return associationType;
37
    }
38
    public void setAssociationType(String associationType) {
39
        this.associationType = associationType;
40
    }
41

    
42
    public String getPrefix() {
43
        return prefix;
44
    }
45
    public void setPrefix(String prefix) {
46
        this.prefix = prefix;
47
    }
48

    
49
    public URI getAccesPoint() {
50
        return accesPoint;
51
    }
52
    public void setAccesPoint(URI accesPoint) {
53
        this.accesPoint = accesPoint;
54
    }
55
}
(15-15/15)