This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch 3_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/3_0_X by this push:
     new ba75e6fe1b Upgrading Swagger Core
ba75e6fe1b is described below

commit ba75e6fe1ba896c5d3fc7911e9b779cf2b683ecc
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Wed May 15 11:46:10 2024 +0200

    Upgrading Swagger Core
---
 .../client/console/tasks/SchedTaskWizardBuilder.java   | 18 +++++++++---------
 pom.xml                                                |  2 +-
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git 
a/client/idrepo/console/src/main/java/org/apache/syncope/client/console/tasks/SchedTaskWizardBuilder.java
 
b/client/idrepo/console/src/main/java/org/apache/syncope/client/console/tasks/SchedTaskWizardBuilder.java
index 4898f61c4d..bfd7705d29 100644
--- 
a/client/idrepo/console/src/main/java/org/apache/syncope/client/console/tasks/SchedTaskWizardBuilder.java
+++ 
b/client/idrepo/console/src/main/java/org/apache/syncope/client/console/tasks/SchedTaskWizardBuilder.java
@@ -124,26 +124,26 @@ public class SchedTaskWizardBuilder<T extends 
SchedTaskTO> extends BaseAjaxWizar
                 
getResult().stream().map(RealmTO::getFullPath).collect(Collectors.toList());
     }
 
-    public class Profile extends WizardStep {
+    protected class Profile extends WizardStep {
 
         private static final long serialVersionUID = -3043839139187792810L;
 
-        private final IModel<List<String>> taskJobDelegates = 
SyncopeWebApplication.get().
+        protected final IModel<List<String>> taskJobDelegates = 
SyncopeWebApplication.get().
                 getImplementationInfoProvider().getTaskJobDelegates();
 
-        private final IModel<List<String>> reconFilterBuilders = 
SyncopeWebApplication.get().
+        protected final IModel<List<String>> reconFilterBuilders = 
SyncopeWebApplication.get().
                 getImplementationInfoProvider().getReconFilterBuilders();
 
-        private final IModel<List<String>> macroActions = 
SyncopeWebApplication.get().
+        protected final IModel<List<String>> macroActions = 
SyncopeWebApplication.get().
                 getImplementationInfoProvider().getMacroActions();
 
-        private final IModel<List<String>> pullActions = 
SyncopeWebApplication.get().
+        protected final IModel<List<String>> pullActions = 
SyncopeWebApplication.get().
                 getImplementationInfoProvider().getPullActions();
 
-        private final IModel<List<String>> pushActions = 
SyncopeWebApplication.get().
+        protected final IModel<List<String>> pushActions = 
SyncopeWebApplication.get().
                 getImplementationInfoProvider().getPushActions();
 
-        public Profile(final SchedTaskTO taskTO) {
+        protected Profile(final SchedTaskTO taskTO) {
             AjaxTextFieldPanel name = new AjaxTextFieldPanel(
                     Constants.NAME_FIELD_NAME, Constants.NAME_FIELD_NAME,
                     new PropertyModel<>(taskTO, Constants.NAME_FIELD_NAME),
@@ -468,11 +468,11 @@ public class SchedTaskWizardBuilder<T extends 
SchedTaskTO> extends BaseAjaxWizar
         }
     }
 
-    public class Schedule extends WizardStep {
+    protected class Schedule extends WizardStep {
 
         private static final long serialVersionUID = -785981096328637758L;
 
-        public Schedule(final SchedTaskTO taskTO) {
+        protected Schedule(final SchedTaskTO taskTO) {
             crontabPanel = new CrontabPanel(
                     "schedule", new PropertyModel<>(taskTO, "cronExpression"), 
taskTO.getCronExpression());
             add(crontabPanel);
diff --git a/pom.xml b/pom.xml
index 9fb7ecdcc0..8c28099c92 100644
--- a/pom.xml
+++ b/pom.xml
@@ -449,7 +449,7 @@ under the License.
 
     <h2.version>2.2.224</h2.version>
 
-    <swagger-core.version>2.2.21</swagger-core.version>
+    <swagger-core.version>2.2.22</swagger-core.version>
     <swagger-ui.version>5.17.2</swagger-ui.version>
 
     <jquery-slimscroll.version>1.3.8</jquery-slimscroll.version>

Reply via email to