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 2017/05/08 14:05:39 UTC

syncope git commit: [SYNCOPE-1076] reset stream before ask for new dowbload

Repository: syncope
Updated Branches:
  refs/heads/master 2f254fac9 -> 2f65c14fc


[SYNCOPE-1076] reset stream before ask for new dowbload


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

Branch: refs/heads/master
Commit: 2f65c14fcd681d1e2e798e4563c6eaa07b5def9f
Parents: 2f254fa
Author: fmartelli <fa...@gmail.com>
Authored: Mon May 8 15:53:12 2017 +0200
Committer: fmartelli <fa...@gmail.com>
Committed: Mon May 8 15:54:02 2017 +0200

----------------------------------------------------------------------
 .../syncope/client/console/reports/ReportExecutionDetails.java     | 1 +
 .../console/wicket/markup/html/form/ActionLinksTogglePanel.java    | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/2f65c14f/client/console/src/main/java/org/apache/syncope/client/console/reports/ReportExecutionDetails.java
----------------------------------------------------------------------
diff --git a/client/console/src/main/java/org/apache/syncope/client/console/reports/ReportExecutionDetails.java b/client/console/src/main/java/org/apache/syncope/client/console/reports/ReportExecutionDetails.java
index eda0e97..4311a1b 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/reports/ReportExecutionDetails.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/reports/ReportExecutionDetails.java
@@ -152,6 +152,7 @@ public class ReportExecutionDetails extends MultilevelPanel.SecondLevel {
                 final String execution, final ReportExecExportFormat exportFormat) {
             this.execution = execution;
             this.exportFormat = exportFormat;
+            this.stream = null;
             return this;
         }
 

http://git-wip-us.apache.org/repos/asf/syncope/blob/2f65c14f/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/ActionLinksTogglePanel.java
----------------------------------------------------------------------
diff --git a/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/ActionLinksTogglePanel.java b/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/ActionLinksTogglePanel.java
index 70f674c..62b9de6 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/ActionLinksTogglePanel.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/wicket/markup/html/form/ActionLinksTogglePanel.java
@@ -85,7 +85,7 @@ public class ActionLinksTogglePanel<T extends Serializable> extends TogglePanel<
         } else if (modelObject instanceof AccessTokenTO) {
             header = ((AccessTokenTO) modelObject).getOwner();
         } else if (modelObject instanceof ExecTO) {
-            header = ((ExecTO) modelObject).getRefDesc();
+            header = ((ExecTO) modelObject).getKey();
         } else if (modelObject instanceof WorkflowDefinitionTO) {
             header = ((WorkflowDefinitionTO) modelObject).getName();
         } else if (modelObject instanceof EntityTO) {