dnet-openaire-usage-stats-s.../trunk/src/main/java/eu/dnetlib/usagestats/sushilite/domain/ReportResponseWrapper.java

26 lines
633 B
Java
Executable File

package eu.dnetlib.usagestats.sushilite.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Created by tsampikos on 26/10/2016.
*/
public class ReportResponseWrapper {
private ReportResponse reportResponse;
public ReportResponseWrapper() {}
public ReportResponseWrapper(ReportResponse reportResponse) {
this.reportResponse = reportResponse;
}
@JsonProperty("ReportResponse")
public ReportResponse getReportResponse() {
return reportResponse;
}
public void setReportResponse(ReportResponse reportResponse) {
this.reportResponse = reportResponse;
}
}