Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
portal-backend
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HBP Medical Informatics Platform
portal-backend
Merge requests
!32
MIP-Engine expected response is not validated, only forwarded.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
MIP-Engine expected response is not validated, only forwarded.
dev/Mipengine_result_change
into
master
Overview
2
Commits
2
Pipelines
0
Changes
7
Merged
Kostas FILIPPOPOLITIS
requested to merge
dev/Mipengine_result_change
into
master
3 years ago
Overview
2
Commits
2
Pipelines
0
Changes
2
Expand
Created by: KFilippopolitis
0
0
Merge request reports
Viewing commit
24e54dd7
Prev
Next
Show latest version
2 files
+
23
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
24e54dd7
Small changes
· 24e54dd7
kfilippopolitis
authored
3 years ago
src/main/java/eu/hbp/mip/models/DTOs/MIPEngineAlgorithmResultDTO.java
+
9
−
2
Options
@@ -9,6 +9,13 @@ import java.util.List;
@AllArgsConstructor
public
class
MIPEngineAlgorithmResultDTO
{
private
final
String
title
;
private
final
List
<
TabularVisualizationDTO
.
Field
>
columns
;
private
final
List
<
List
<
Object
>>
data
;
private
final
List
<
Column
>
columns
;
@Data
@AllArgsConstructor
public
static
class
Column
{
private
final
String
name
;
private
final
String
type
;
private
final
List
<
Object
>
data
;
}
}
\ No newline at end of file