cleanup
[cdmlib.git] / cdmlib-ext / src / main / java / eu / etaxonomy / cdm / ext / occurrence / gbif / DataSetResponse.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 /**
14 * Wrapper object for the parameters that are parsed from a GBIF dataset query
15 * @author pplitzner
16 * @since 02.06.2014
17 */
18 public class DataSetResponse {
19
20 private GbifDataSetProtocol protocol;
21 private URI endpoint;
22 private String unitId;
23 private String abcdSchema;
24
25 public GbifDataSetProtocol getProtocol() {
26 return protocol;
27 }
28 public void setProtocol(GbifDataSetProtocol protocol) {
29 this.protocol = protocol;
30 }
31
32 public URI getEndpoint() {
33 return endpoint;
34 }
35 public void setEndpoint(URI endpoint) {
36 this.endpoint = endpoint;
37 }
38
39 public String getUnitId() {
40 return unitId;
41 }
42 public void setUnitId(String unitId) {
43 this.unitId = unitId;
44 }
45
46 public String getAbcdSchema() {
47 return abcdSchema;
48 }
49 public void setAbcdSchema(String abcdSchema) {
50 this.abcdSchema = abcdSchema;
51 }
52
53 }