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