ref #6166: parsing of siblings and search for siblings in different accessPoints
[cdmlib.git] / cdmlib-io / src / main / java / eu / etaxonomy / cdm / io / specimen / abcd206 / in / UnitAssociationWrapper.java
index 85000c4a649e29fc84c825c0f8fb7977a9b33eb2..8c29d799ca020f9f91cb082d5d27ce75cf50f2f1 100644 (file)
@@ -8,6 +8,8 @@
 */
 package eu.etaxonomy.cdm.io.specimen.abcd206.in;
 
+import java.net.URI;
+
 import org.w3c.dom.NodeList;
 
 /**
@@ -20,6 +22,7 @@ import org.w3c.dom.NodeList;
 public class UnitAssociationWrapper {
 
     private NodeList associatedUnits;
+    private URI accesPoint;
     private String associationType;
     private String prefix;
 
@@ -47,4 +50,18 @@ public class UnitAssociationWrapper {
         this.prefix = prefix;
     }
 
+    /**
+     * @return the accesPoint
+     */
+    public URI getAccesPoint() {
+        return accesPoint;
+    }
+
+    /**
+     * @param accesPoint the accesPoint to set
+     */
+    public void setAccesPoint(URI accesPoint) {
+        this.accesPoint = accesPoint;
+    }
+
 }