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 715867799d [SYNCOPE-1748] Fix incorrectly named bulkMaxPayloadSize
property (#440)
715867799d is described below
commit 715867799d92f2f6d0812cef93eaf56d61cd06a6
Author: Philipp Trenz <[email protected]>
AuthorDate: Wed Apr 12 11:54:09 2023 +0200
[SYNCOPE-1748] Fix incorrectly named bulkMaxPayloadSize property (#440)
---
.../syncope/client/console/panels/SCIMConfGeneralPanel.java | 8 ++++----
.../syncope/client/console/panels/SCIMConfGeneralPanel.html | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git
a/ext/scimv2/client-console/src/main/java/org/apache/syncope/client/console/panels/SCIMConfGeneralPanel.java
b/ext/scimv2/client-console/src/main/java/org/apache/syncope/client/console/panels/SCIMConfGeneralPanel.java
index d368e69d5b..00a76404d1 100644
---
a/ext/scimv2/client-console/src/main/java/org/apache/syncope/client/console/panels/SCIMConfGeneralPanel.java
+++
b/ext/scimv2/client-console/src/main/java/org/apache/syncope/client/console/panels/SCIMConfGeneralPanel.java
@@ -76,9 +76,9 @@ public class SCIMConfGeneralPanel extends SCIMConfTabPanel {
build("bulkMaxOperations", "bulkMaxOperations", Integer.class,
new PropertyModel<>(scimGeneralConf,
"bulkMaxOperations"));
- AjaxSpinnerFieldPanel<Integer> bulkMaxMaxPayloadSizePanel = new
AjaxSpinnerFieldPanel.Builder<Integer>().
- build("bulkMaxMaxPayloadSize", "bulkMaxMaxPayloadSize",
Integer.class,
- new PropertyModel<>(scimGeneralConf,
"bulkMaxMaxPayloadSize"));
+ AjaxSpinnerFieldPanel<Integer> bulkMaxPayloadSizePanel = new
AjaxSpinnerFieldPanel.Builder<Integer>().
+ build("bulkMaxPayloadSize", "bulkMaxPayloadSize",
Integer.class,
+ new PropertyModel<>(scimGeneralConf,
"bulkMaxPayloadSize"));
AjaxSpinnerFieldPanel<Integer> filterMaxResultsPanel = new
AjaxSpinnerFieldPanel.Builder<Integer>().
build("filterMaxResults", "filterMaxResults", Integer.class,
@@ -104,7 +104,7 @@ public class SCIMConfGeneralPanel extends SCIMConfTabPanel {
add(creationDatePanel);
add(lastChangeDatePanel);
add(bulkMaxOperationsPanel);
- add(bulkMaxMaxPayloadSizePanel);
+ add(bulkMaxPayloadSizePanel);
add(filterMaxResultsPanel);
add(eTagValuePanel);
}
diff --git
a/ext/scimv2/client-console/src/main/resources/org/apache/syncope/client/console/panels/SCIMConfGeneralPanel.html
b/ext/scimv2/client-console/src/main/resources/org/apache/syncope/client/console/panels/SCIMConfGeneralPanel.html
index dba5865287..50f310a1b3 100644
---
a/ext/scimv2/client-console/src/main/resources/org/apache/syncope/client/console/panels/SCIMConfGeneralPanel.html
+++
b/ext/scimv2/client-console/src/main/resources/org/apache/syncope/client/console/panels/SCIMConfGeneralPanel.html
@@ -21,7 +21,7 @@ under the License.
<div wicket:id="creationDate"></div>
<div wicket:id="lastChangeDate"></div>
<div wicket:id="bulkMaxOperations"></div>
- <div wicket:id="bulkMaxMaxPayloadSize"></div>
+ <div wicket:id="bulkMaxPayloadSize"></div>
<div wicket:id="filterMaxResults"></div>
<div wicket:id="eTagValue"></div>
</wicket:panel>