Project

General

Profile

Download (742 Bytes) Statistics
| Branch: | Tag: | Revision:
1 d33c0bce Katja Luther
/**
2
* Copyright (C) 2017 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;
10
11 de8249cf Andreas Müller
import eu.etaxonomy.cdm.common.URI;
12 d33c0bce Katja Luther
13
/**
14
 * @author k.luther
15 53db84af Andreas Müller
 * @since 21.02.2017
16 d33c0bce Katja Luther
 */
17
public class DataResponse {
18
    protected final URI dataSetUri;
19
20
    protected final String[] tripleID;
21
22
    protected final Object dataHolder;
23
24
    public DataResponse(Object abcdDataHolder, URI dataSetUrl,  String [] tripleID) {
25
        this.dataHolder = abcdDataHolder;
26
        this.dataSetUri = dataSetUrl;
27
        this.tripleID = tripleID;
28
    }
29 2720ea2c Andreas Müller
}