Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xta-adapter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OZG-Cloud
app
eingang
xta-adapter
Compare revisions
cc3a7f21ea8804f021142c0dc54d4615532a186b to 2cf595938199fa23fd13b3865b428f7a3a7430bf
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ozg-cloud/app/eingang/xta-adapter
Select target project
No results found
2cf595938199fa23fd13b3865b428f7a3a7430bf
Select Git revision
Swap
Target
ozg-cloud/app/eingang/xta-adapter
Select target project
ozg-cloud/app/eingang/xta-adapter
1 result
cc3a7f21ea8804f021142c0dc54d4615532a186b
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
KOP-3126 config: Add logging and schema validation setting
· 5ef92bbe
Jan Zickermann
authored
2 weeks ago
5ef92bbe
Merge branch 'KOP-3126-Add-xta-client-lib-opts' into 'release-2.19.0'
· 2cf59593
Jan Zickermann
authored
2 weeks ago
KOP-3126 config: Add logging and schema validation setting See merge request
!7
2cf59593
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/de/ozgcloud/eingang/xta/XtaProperties.java
+4
-0
4 additions, 0 deletions
src/main/java/de/ozgcloud/eingang/xta/XtaProperties.java
src/main/java/de/ozgcloud/eingang/xta/XtaServiceConfiguration.java
+3
-0
3 additions, 0 deletions
...java/de/ozgcloud/eingang/xta/XtaServiceConfiguration.java
with
7 additions
and
0 deletions
src/main/java/de/ozgcloud/eingang/xta/XtaProperties.java
View file @
2cf59593
...
...
@@ -54,6 +54,10 @@ class XtaProperties {
private
KeyStore
keyStore
;
@NotEmpty
private
List
<
String
>
identifiers
;
private
boolean
logSoapRequests
;
private
boolean
logSoapResponses
;
private
boolean
validateSoapSchemas
;
}
@Validated
...
...
This diff is collapsed.
Click to expand it.
src/main/java/de/ozgcloud/eingang/xta/XtaServiceConfiguration.java
View file @
2cf59593
...
...
@@ -73,6 +73,9 @@ public class XtaServiceConfiguration {
.
msgBoxServiceUrl
(
getMsgBoxPortUrl
())
.
clientCertKeystore
(
clientCertKeyStore
)
.
isMessageSupported
(
this
::
isSupportedMessageType
)
.
logSoapRequests
(
properties
.
isLogSoapRequests
())
.
logSoapResponses
(
properties
.
isLogSoapResponses
())
.
schemaValidation
(
properties
.
isValidateSoapSchemas
())
.
build
();
}
...
...
This diff is collapsed.
Click to expand it.