You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by an...@apache.org on 2018/11/13 16:49:18 UTC

[syncope] branch 2_0_X updated: minor changes on admin console

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

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


The following commit(s) were added to refs/heads/2_0_X by this push:
     new f740dee  minor changes on admin console
f740dee is described below

commit f740deed8c1e8cb3ba642173679648da5db9610d
Author: Andrea Patricelli <an...@apache.org>
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 305a97b..cfdd610 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 4c3fce7..1916b17 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
@@ -210,7 +210,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;
     }