Config: add config for saml user account, domain and redirected URL to ACS UI
Signed-off-by: Rohit Yadav <rohit.ya...@shapeblue.com> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/b0f3d66f Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b0f3d66f Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b0f3d66f Branch: refs/heads/master Commit: b0f3d66f9df597d4d96bd6966e6bfa533445f9ac Parents: 2f6fa26 Author: Rohit Yadav <rohit.ya...@shapeblue.com> Authored: Mon Aug 25 01:02:32 2014 +0200 Committer: Rohit Yadav <rohit.ya...@shapeblue.com> Committed: Thu Aug 28 19:45:25 2014 +0200 ---------------------------------------------------------------------- server/src/com/cloud/configuration/Config.java | 24 +++++++++++++++++++++ 1 file changed, 24 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b0f3d66f/server/src/com/cloud/configuration/Config.java ---------------------------------------------------------------------- diff --git a/server/src/com/cloud/configuration/Config.java b/server/src/com/cloud/configuration/Config.java index de4aaed..530303a 100755 --- a/server/src/com/cloud/configuration/Config.java +++ b/server/src/com/cloud/configuration/Config.java @@ -1379,6 +1379,30 @@ public enum Config { "300000", "The allowable clock difference in milliseconds between when an SSO login request is made and when it is received.", null), + SAMLUserAccountName( + "Advanced", + ManagementServer.class, + String.class, + "saml2.default.accountname", + "admin", + "The name of the default account to use when creating users from SAML SSO", + null), + SAMLUserDomain( + "Advanced", + ManagementServer.class, + String.class, + "saml2.default.domainid", + "1", + "The default domain UUID to use when creating users from SAML SSO", + null), + SAMLCloudStackRedirectionUrl( + "Advanced", + ManagementServer.class, + String.class, + "saml2.redirect.url", + "http://localhost:8080/client", + "The CloudStack UI url the SSO should redirected to when successful", + null), SAMLServiceProviderID( "Advanced", ManagementServer.class,