Config: add config for saml user account, domain and redirected URL to ACS UI

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2014-08-25 01:02:32 +02:00
parent 2f6fa268f4
commit b0f3d66f9d
1 changed files with 24 additions and 0 deletions

View File

@ -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,