This is an automated email from the ASF dual-hosted git repository.
andreapatricelli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git
The following commit(s) were added to refs/heads/master by this push:
new 2bf259f minor changes on admin console
2bf259f is described below
commit 2bf259faf23e7adcc5a1f0dc733cf7864aa917f6
Author: Andrea Patricelli <[email protected]>
AuthorDate: Tue Nov 13 17:48:39 2018 +0100
minor changes on admin console
---
.../client/console/wicket/markup/html/form/AbstractFieldPanel.java | 4 ++++
.../org/apache/syncope/client/console/wizards/any/AbstractAttrs.java | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git
a/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/AbstractFieldPanel.java
b/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/AbstractFieldPanel.java
index 115349b..dc23cc3 100644
---
a/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/AbstractFieldPanel.java
+++
b/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/AbstractFieldPanel.java
@@ -118,4 +118,8 @@ public abstract class AbstractFieldPanel<T> extends Panel {
}
public abstract AbstractFieldPanel<T> setModelObject(T object);
+
+ public String getName() {
+ return this.name;
+ }
}
diff --git
a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/AbstractAttrs.java
b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/AbstractAttrs.java
index 7455ffc..7a315d6 100644
---
a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/AbstractAttrs.java
+++
b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/AbstractAttrs.java
@@ -206,7 +206,7 @@ public abstract class AbstractAttrs<S extends SchemaTO>
extends WizardStep imple
public PageReference getPageReference() {
// SYNCOPE-1213
- // default implementation does not requier to pass page reference,
override this method of want otherwise
+ // default implementation does not require to pass page reference,
override this method of want otherwise
return null;
}