Project

General

Profile

1
package eu.dnetlib.usagestats.sushilite.domain;
2

    
3
import com.fasterxml.jackson.annotation.JsonProperty;
4

    
5
/**
6
 * Created by tsampikos on 26/10/2016.
7
 */
8
public class ReportWrapper {
9
    private Report report;
10

    
11
    public ReportWrapper() {
12
    }
13

    
14
    public ReportWrapper(Report report) {
15
        this.report = report;
16
    }
17

    
18
    @JsonProperty("Report")
19
    public Report getReport() {
20
        return report;
21
    }
22

    
23
    public void setReport(Report report) {
24
        this.report = report;
25
    }
26
}
(15-15/18)