From 3121b0dc6b43ee22f0b02cb4e62758f3750ef2fc Mon Sep 17 00:00:00 2001 From: x-Clusse <claude.lusseau@kereval.com> Date: Mon, 5 Feb 2024 09:11:56 +0100 Subject: [PATCH] Update for gazelle-tools 3.4.0 --- .../messageprofiles/view/HL7MessageProfileManagerView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GazelleHL7v2Validator-ejb/src/main/java/net/ihe/gazelle/hl7/messageprofiles/view/HL7MessageProfileManagerView.java b/GazelleHL7v2Validator-ejb/src/main/java/net/ihe/gazelle/hl7/messageprofiles/view/HL7MessageProfileManagerView.java index dfacdb7a..6a8f2054 100644 --- a/GazelleHL7v2Validator-ejb/src/main/java/net/ihe/gazelle/hl7/messageprofiles/view/HL7MessageProfileManagerView.java +++ b/GazelleHL7v2Validator-ejb/src/main/java/net/ihe/gazelle/hl7/messageprofiles/view/HL7MessageProfileManagerView.java @@ -18,9 +18,9 @@ package net.ihe.gazelle.hl7.messageprofiles.view; import net.ihe.gazelle.common.filter.list.GazelleListDataModel; import net.ihe.gazelle.hl7.messageprofiles.adapter.MessageProfilesDAO; import net.ihe.gazelle.hl7.messageprofiles.adapter.MessageProfilesDAOImpl; -import net.ihe.gazelle.hl7.messageprofiles.model.Profile; import net.ihe.gazelle.hl7.messageprofiles.application.ControllerException; import net.ihe.gazelle.hl7.messageprofiles.application.HL7Application; +import net.ihe.gazelle.hl7.messageprofiles.model.Profile; import net.ihe.gazelle.tf.messageprofile.SOAPExceptionException; import net.ihe.gazelle.tf.ws.Hl7MessageProfile; import org.apache.axis2.AxisFault; @@ -262,7 +262,7 @@ public class HL7MessageProfileManagerView implements Serializable { public void displayProfilesList() { this.hl7Application.setSelectedMessageProfileReference(null); - if ((getAllMessageProfilesReferences()== null) || getAllMessageProfilesReferences().getListElements()==null) { + if ((getAllMessageProfilesReferences()== null) || getAllMessageProfilesReferences().getWrappedData()==null) { getAllMessageProfiles(); } } -- GitLab