Skip to content

Commit 32ee03d

Browse files
authored
Merge pull request #2551 from CCAFS/A2-621-BI-Embedding-App
A2 621 bi embedding app
2 parents cfb84f2 + d017d58 commit 32ee03d

File tree

12 files changed

+84
-734
lines changed

12 files changed

+84
-734
lines changed

marlo-data/src/main/java/org/cgiar/ccafs/marlo/data/model/BiReports.java

Lines changed: 5 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,7 @@ public class BiReports extends MarloBaseEntity implements java.io.Serializable,
3636
private String reportDescription;
3737

3838
@Expose
39-
private String reportId;
40-
41-
@Expose
42-
private String datasetId;
43-
44-
@Expose
45-
private String embedUrl;
39+
private String embedReport;
4640

4741
@Expose
4842
private Boolean isActive;
@@ -66,14 +60,8 @@ public GlobalUnit getCrp() {
6660
return crp;
6761
}
6862

69-
70-
public String getDatasetId() {
71-
return datasetId;
72-
}
73-
74-
75-
public String getEmbedUrl() {
76-
return embedUrl;
63+
public String getEmbedReport() {
64+
return embedReport;
7765
}
7866

7967

@@ -125,11 +113,6 @@ public String getReportDescription() {
125113
}
126114

127115

128-
public String getReportId() {
129-
return reportId;
130-
}
131-
132-
133116
public String getReportName() {
134117
return reportName;
135118
}
@@ -154,13 +137,8 @@ public void setCrp(GlobalUnit crp) {
154137
}
155138

156139

157-
public void setDatasetId(String datasetId) {
158-
this.datasetId = datasetId;
159-
}
160-
161-
162-
public void setEmbedUrl(String embedUrl) {
163-
this.embedUrl = embedUrl;
140+
public void setEmbedReport(String embedReport) {
141+
this.embedReport = embedReport;
164142
}
165143

166144

@@ -195,11 +173,6 @@ public void setReportDescription(String reportDescription) {
195173
this.reportDescription = reportDescription;
196174
}
197175

198-
199-
public void setReportId(String reportId) {
200-
this.reportId = reportId;
201-
}
202-
203176
public void setReportName(String reportName) {
204177
this.reportName = reportName;
205178
}

marlo-data/src/main/resources/xmls/BiReports.hbm.xml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,8 @@
1717
<property name="reportDescription" type="string">
1818
<column name="report_description" />
1919
</property>
20-
<property name="reportId" type="string">
21-
<column name="report_id" />
22-
</property>
23-
<property name="datasetId" type="string">
24-
<column name="dataset_id" />
25-
</property>
26-
<property name="embedUrl" type="string">
27-
<column name="embed_url" />
20+
<property name="embedReport" type="string">
21+
<column name="embed_report" />
2822
</property>
2923
<property name="isActive" type="boolean">
3024
<column name="is_active" not-null="true" />

marlo-web/src/main/java/org/cgiar/ccafs/marlo/action/json/bi/BiReportsTokenAction.java

Lines changed: 0 additions & 168 deletions
This file was deleted.

marlo-web/src/main/java/org/cgiar/ccafs/marlo/rest/services/deliverables/AzureClientAPI.java

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)