Skip to content

Commit

Permalink
Upgrading Swagger Core
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgrosso committed May 15, 2024
1 parent 58f9e1a commit 7f44b61
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,26 +124,26 @@ protected List<String> searchRealms(final String realmQuery) {
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),
Expand Down Expand Up @@ -444,11 +444,11 @@ public void setObject(final Integer object) {
}
}

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);
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit 7f44b61

Please sign in to comment.