This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/syncope.git
commit 7f44b6118486f068b90ab119f56a49bd9b05931d 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 e7d82c63c5..b5db4efcd4 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), @@ -444,11 +444,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 35bddad19e..40a7892431 100644 --- a/pom.xml +++ b/pom.xml @@ -442,7 +442,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>
