Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DBRepo
Manage
Activity
Members
Labels
Plan
External wiki
Automate
Agent sessions
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
18
Merged
Resolve "Test AMQP"
Martin Weise
requested to merge
122-test-amqp
into
dev
Jan 10, 2022
Overview
0
Commits
48
Pipelines
0
Changes
18
.
0
0
Merge request reports
Viewing commit
c68d4e99
Prev
Next
Show latest version
18 files
+
130
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
Unverified
c68d4e99
Updated the interface to comply with camel case
· c68d4e99
Martin Weise
authored
Jan 18, 2022
fda-metadata-db/api/src/main/java/at/tuwien/api/container/image/ImageChangeDto.java
+
3
−
0
View file @ c68d4e99
Edit in single-file editor
Open in Web IDE
Show full file
package
at.tuwien.api.container.image
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.*
;
@@ -23,6 +24,7 @@ public class ImageChangeDto {
private
ImageEnvItemDto
[]
environment
;
@NotBlank
@JsonProperty
(
"driver_class"
)
@ApiModelProperty
(
required
=
true
,
example
=
"org.postgresql.Driver"
)
private
String
driverClass
;
@@ -35,6 +37,7 @@ public class ImageChangeDto {
private
String
dialect
;
@NotBlank
@JsonProperty
(
"jdbc_method"
)
@ApiModelProperty
(
required
=
true
,
example
=
"postgresql"
)
private
String
jdbcMethod
;
Loading