Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pixm Connector
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
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gazelle
Public
Simulation
Pixm Connector
Commits
58317ab4
Commit
58317ab4
authored
3 years ago
by
Franck Desaize
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into 'feature/patreg-192bis'
# Conflicts: # pom.xml
parents
713ec2c2
6037cef8
No related branches found
No related tags found
1 merge request
!5
Release/2.0.0
Pipeline
#286909
passed
3 years ago
Stage: build
Stage: tests
Stage: cleanup
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
pom.xml
+1
-3
1 addition, 3 deletions
pom.xml
src/main/java/net/ihe/gazelle/business/provider/ChPatientResourceProvider.java
+4
-1
4 additions, 1 deletion
.../gazelle/business/provider/ChPatientResourceProvider.java
with
6 additions
and
5 deletions
.gitlab-ci.yml
+
1
−
1
View file @
58317ab4
...
...
@@ -41,5 +41,5 @@ release/code:
extends
:
-
.releaseCodeForJava
variables
:
P_MAVEN_IMAGE_TAG
:
"
3.6.3
"
P_MAVEN_IMAGE_TAG
:
"
wildfly-3.6.3-18.0.1.Final
"
This diff is collapsed.
Click to expand it.
pom.xml
+
1
−
3
View file @
58317ab4
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
net.ihe.gazelle
</groupId>
<artifactId>
pixm-connector
</artifactId>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/net/ihe/gazelle/business/provider/ChPatientResourceProvider.java
+
4
−
1
View file @
58317ab4
...
...
@@ -272,7 +272,7 @@ public class ChPatientResourceProvider implements IResourceProvider {
*/
private
List
<
String
>
createTargetSystemListFromParam
(
StringAndListParam
targetSystemParam
)
{
if
(
targetSystemParam
==
null
)
{
throw
new
InvalidRequestException
(
INVALID_REQUEST_TARGET_DOMAIN_CAN_NOT_BE_EMPTY
);
throw
new
ForbiddenOperationException
(
TARGET_SYSTEM_NOT_FOUND
);
}
List
<
String
>
targetSystemList
=
new
ArrayList
<>();
for
(
StringOrListParam
listParam
:
targetSystemParam
.
getValuesAsQueryTokens
())
{
...
...
@@ -291,6 +291,9 @@ public class ChPatientResourceProvider implements IResourceProvider {
targetSystemList
.
add
(
singleParamValue
);
}
}
if
(
targetSystemList
.
size
()>
2
){
throw
new
ForbiddenOperationException
(
TARGET_SYSTEM_NOT_FOUND
);
}
return
targetSystemList
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment