Project

General

Profile

« Previous | Next » 

Revision 2720ea2c

Added by Andreas Müller over 3 years ago

cleanup

View differences:

cdmlib-ext/src/main/java/eu/etaxonomy/cdm/ext/occurrence/gbif/GbifResponse.java
20 20
 * holds the endpoint URL of the original record and the {@link GbifDataSetProtocol}
21 21
 * @author pplitzner
22 22
 * @since 27.05.2014
23
 *
24 23
 */
25 24
public class GbifResponse extends DataResponse {
26 25

  
27

  
28

  
29 26
    private final GbifDataSetProtocol dataSetProtocol;
30 27

  
31 28
    private final TaxonName scientificName;
29

  
32 30
    /**
33 31
     * @param derivedUnitFacade
34 32
     * @param dataSetUrl
35 33
     */
36 34
    public GbifResponse(DerivedUnitFacade derivedUnitFacade, URI dataSetUrl, GbifDataSetProtocol dataSetProtocol, String [] tripleID, TaxonName scientificName) {
37 35
        super(derivedUnitFacade,dataSetUrl, tripleID);
38
       this.dataSetProtocol = dataSetProtocol;
39

  
36
        this.dataSetProtocol = dataSetProtocol;
40 37
        this.scientificName = scientificName;
41

  
42 38
    }
43 39

  
44 40
    public DerivedUnitFacade getDerivedUnitFacade() {
......
49 45
        return dataSetUri;
50 46
    }
51 47

  
52
    /**
53
     * @return the dataSetProtocol
54
     */
55 48
    public GbifDataSetProtocol getDataSetProtocol() {
56 49
        return dataSetProtocol;
57 50
    }
......
60 53
        return tripleID;
61 54
    }
62 55

  
63
    /**
64
     * @return the scientificName
65
     */
66 56
    public TaxonName getScientificName() {
67 57
        return scientificName;
68 58
    }
69

  
70
}
59
}

Also available in: Unified diff