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

syncope git commit: Fixing build error

Repository: syncope
Updated Branches:
  refs/heads/2_0_X 3dc6e4203 -> c671393e2


Fixing build error


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

Branch: refs/heads/2_0_X
Commit: c671393e2977550df35213e6d0c3abbdb06e4d81
Parents: 3dc6e42
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Thu Aug 31 15:50:31 2017 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Thu Aug 31 15:50:31 2017 +0100

----------------------------------------------------------------------
 .../syncope/client/console/wizards/SAML2IdPWizardBuilder.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/c671393e/ext/saml2sp/client-console/src/main/java/org/apache/syncope/client/console/wizards/SAML2IdPWizardBuilder.java
----------------------------------------------------------------------
diff --git a/ext/saml2sp/client-console/src/main/java/org/apache/syncope/client/console/wizards/SAML2IdPWizardBuilder.java b/ext/saml2sp/client-console/src/main/java/org/apache/syncope/client/console/wizards/SAML2IdPWizardBuilder.java
index ba25ebf..3376e64 100644
--- a/ext/saml2sp/client-console/src/main/java/org/apache/syncope/client/console/wizards/SAML2IdPWizardBuilder.java
+++ b/ext/saml2sp/client-console/src/main/java/org/apache/syncope/client/console/wizards/SAML2IdPWizardBuilder.java
@@ -120,7 +120,7 @@ public class SAML2IdPWizardBuilder extends AjaxWizardBuilder<SAML2IdPTO> {
             fields.add(useDeflateEncoding);
 
             AjaxCheckBoxPanel supportUnsolicited = new AjaxCheckBoxPanel(
-                    "field", "supportUnsolicited", new PropertyModel<>(idpTO, "supportUnsolicited"), false);
+                    "field", "supportUnsolicited", new PropertyModel<Boolean>(idpTO, "supportUnsolicited"), false);
             fields.add(supportUnsolicited);
 
             AjaxDropDownChoicePanel<SAML2BindingType> bindingType =