You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by fm...@apache.org on 2016/08/01 09:39:14 UTC

syncope git commit: [SYNCOPE-908] directory panel cast fixed

Repository: syncope
Updated Branches:
  refs/heads/master d9ffd1523 -> c533ba9f8


[SYNCOPE-908] directory panel cast fixed


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

Branch: refs/heads/master
Commit: c533ba9f882bb3fba6171c4a807582cbfc39d5ff
Parents: d9ffd15
Author: fmartelli <fa...@gmail.com>
Authored: Mon Aug 1 11:39:01 2016 +0200
Committer: fmartelli <fa...@gmail.com>
Committed: Mon Aug 1 11:39:01 2016 +0200

----------------------------------------------------------------------
 .../apache/syncope/client/console/wizards/any/Relationships.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/c533ba9f/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/Relationships.java
----------------------------------------------------------------------
diff --git a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/Relationships.java b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/Relationships.java
index 20f054c..bc8ff12 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/Relationships.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/Relationships.java
@@ -31,7 +31,7 @@ import org.apache.commons.collections4.Predicate;
 import org.apache.syncope.client.console.SyncopeConsoleSession;
 import org.apache.syncope.client.console.commons.Constants;
 import org.apache.syncope.client.console.commons.SerializableTransformer;
-import org.apache.syncope.client.console.panels.AnyObjectDirectoryPanel;
+import org.apache.syncope.client.console.panels.AnyDirectoryPanel;
 import org.apache.syncope.client.console.panels.ListViewPanel;
 import org.apache.syncope.client.console.panels.ListViewPanel.ListViewReload;
 import org.apache.syncope.client.console.panels.search.AnyObjectSearchPanel;
@@ -354,7 +354,7 @@ public class Relationships extends WizardStep {
                         getTarget();
                 final String fiql = SearchUtils.buildFIQL(anyObjectSearchPanel.getModel().getObject(),
                         SyncopeClient.getAnyObjectSearchConditionBuilder(anyObjectSearchPanel.getBackObjectType()));
-                AnyObjectDirectoryPanel.class.cast(anyObjectDirectoryPanel).search(fiql, target);
+                AnyDirectoryPanel.class.cast(anyObjectDirectoryPanel).search(fiql, target);
             } else if (event.getPayload() instanceof AnySelectionDirectoryPanel.ItemSelection) {
                 final AjaxRequestTarget target = AnySelectionDirectoryPanel.ItemSelection.class.cast(event.
                         getPayload()).getTarget();