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 2017/08/03 14:58:38 UTC

syncope git commit: changed access of PlainAttrs.getFieldPanel to protected in order to allow easy customization

Repository: syncope
Updated Branches:
  refs/heads/2_0_X 923f64a87 -> 54bc012b1


changed access of PlainAttrs.getFieldPanel to protected in order to allow easy customization


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/54bc012b
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/54bc012b
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/54bc012b

Branch: refs/heads/2_0_X
Commit: 54bc012b1faf33b5e92ec2147da450ae5a994099
Parents: 923f64a
Author: Andrea Patricelli <an...@apache.org>
Authored: Thu Aug 3 16:56:48 2017 +0200
Committer: Andrea Patricelli <an...@apache.org>
Committed: Thu Aug 3 16:57:06 2017 +0200

----------------------------------------------------------------------
 .../org/apache/syncope/client/console/wizards/any/PlainAttrs.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/54bc012b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
----------------------------------------------------------------------
diff --git a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
index bbb218c..1594ca0 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
@@ -202,7 +202,7 @@ public class PlainAttrs extends AbstractAttrs<PlainSchemaTO> {
     }
 
     @SuppressWarnings({ "rawtypes", "unchecked" })
-    private FieldPanel getFieldPanel(final PlainSchemaTO schemaTO) {
+    protected FieldPanel getFieldPanel(final PlainSchemaTO schemaTO) {
         final boolean required;
         final boolean readOnly;
         final AttrSchemaType type;