Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DBRepo
Manage
Activity
Members
Labels
Plan
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FAIR Data Austria DB Repository
DBRepo
Merge requests
!35
Something went wrong on our end
Resolve "Test AMQP"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Test AMQP"
122-test-amqp
into
dev
Overview
0
Commits
48
Pipelines
0
Changes
27
Merged
Resolve "Test AMQP"
Martin Weise
requested to merge
122-test-amqp
into
dev
Jan 10, 2022
Overview
0
Commits
48
Pipelines
0
Changes
27
.
0
0
Merge request reports
Viewing commit
ac6f6c73
Prev
Next
Show latest version
27 files
+
127
−
75
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
27
Unverified
ac6f6c73
Made frontend RESTful
· ac6f6c73
Martin Weise
authored
Jan 23, 2022
fda-container-service/services/src/main/java/at/tuwien/mapper/ContainerMapper.java
+
3
−
2
View file @ ac6f6c73
Edit in single-file editor
Open in Web IDE
Show full file
@@ -14,7 +14,7 @@ import java.util.Locale;
import
java.util.Objects
;
import
java.util.regex.Pattern
;
@Mapper
(
componentModel
=
"spring"
,
uses
=
{
ImageMapper
.
class
})
@Mapper
(
componentModel
=
"spring"
,
uses
=
{
ImageMapper
.
class
,
ContainerMapper
.
class
})
public
interface
ContainerMapper
{
default
String
containerCreateRequestDtoToDockerImage
(
ContainerCreateRequestDto
data
)
{
@@ -36,7 +36,8 @@ public interface ContainerMapper {
@Mappings
({
@Mapping
(
source
=
"state"
,
target
=
"state"
,
qualifiedByName
=
"containerStateDto"
),
@Mapping
(
source
=
"id"
,
target
=
"hash"
),
@Mapping
(
target
=
"id"
,
ignore
=
true
)
@Mapping
(
target
=
"id"
,
ignore
=
true
),
@Mapping
(
target
=
"databases"
,
ignore
=
true
),
})
ContainerDto
inspectContainerResponseToContainerDto
(
InspectContainerResponse
data
);
Loading