Merge branch 'release/5.45.0'
[cdmlib.git] / cdmlib-ext / src / main / java / eu / etaxonomy / cdm / ext / occurrence / gbif / GbifResponse.java
1 /**
2 * Copyright (C) 2014 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.ext.occurrence.gbif;
10
11 import eu.etaxonomy.cdm.common.URI;
12 import eu.etaxonomy.cdm.ext.occurrence.DataResponse;
13 import eu.etaxonomy.cdm.facade.DerivedUnitFacade;
14 import eu.etaxonomy.cdm.model.name.TaxonName;
15
16 /**
17 * Wrapper class which holds a {@link DerivedUnitFacade} which was parsed from a GBIF JSON response.
18 * Additionally it holds the {@link URI} to query the GBIF data set web service which
19 * holds the endpoint URL of the original record and the {@link GbifDataSetProtocol}
20 * @author pplitzner
21 * @since 27.05.2014
22 */
23 public class GbifResponse extends DataResponse {
24
25 private final GbifDataSetProtocol dataSetProtocol;
26
27 private final TaxonName scientificName;
28
29 public GbifResponse(DerivedUnitFacade derivedUnitFacade, URI dataSetUrl, GbifDataSetProtocol dataSetProtocol, String [] tripleID, TaxonName scientificName) {
30 super(derivedUnitFacade,dataSetUrl, tripleID);
31 this.dataSetProtocol = dataSetProtocol;
32 this.scientificName = scientificName;
33 }
34
35 public DerivedUnitFacade getDerivedUnitFacade() {
36 return (DerivedUnitFacade)dataHolder;
37 }
38
39 public URI getDataSetUri() {
40 return dataSetUri;
41 }
42
43 public GbifDataSetProtocol getDataSetProtocol() {
44 return dataSetProtocol;
45 }
46
47 public String[] getTripleID(){
48 return tripleID;
49 }
50
51 public TaxonName getScientificName() {
52 return scientificName;
53 }
54 }