Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CHOReVOLUTION
enactment-engine
Commits
3f030564
Commit
3f030564
authored
Oct 06, 2016
by
Alessio Carenini
Browse files
Added config params for identity manager
parent
74ab4472
Changes
1
Hide whitespace changes
Inline
Side-by-side
ee2/brooklyn-server/core/src/main/java/org/apache/brooklyn/core/location/cloud/CloudLocationConfig.java
View file @
3f030564
...
...
@@ -35,7 +35,7 @@ public interface CloudLocationConfig {
public
static
final
ConfigKey
<
String
>
CLOUD_ENDPOINT
=
LocationConfigKeys
.
CLOUD_ENDPOINT
;
public
static
final
ConfigKey
<
String
>
CLOUD_REGION_ID
=
LocationConfigKeys
.
CLOUD_REGION_ID
;
public
static
final
ConfigKey
<
String
>
CLOUD_AVAILABILITY_ZONE_ID
=
LocationConfigKeys
.
CLOUD_AVAILABILITY_ZONE_ID
;
@SetFromFlag
(
"identity"
)
public
static
final
ConfigKey
<
String
>
ACCESS_IDENTITY
=
LocationConfigKeys
.
ACCESS_IDENTITY
;
@SetFromFlag
(
"credential"
)
...
...
@@ -114,6 +114,15 @@ public interface CloudLocationConfig {
public
static
final
ConfigKey
<
String
>
DOMAIN_NAME
=
new
BasicConfigKey
<
String
>(
String
.
class
,
"domainName"
,
"DNS domain where the host should be created, e.g. yourdomain.com (selected clouds only)"
,
null
);
public
static
final
ConfigKey
<
String
>
IDENTITY_MANAGER_ENDPOINT
=
new
BasicConfigKey
<
String
>(
String
.
class
,
"identityManagerEndpoint"
,
"Endpoint of the Identity Manager"
,
null
);
public
static
final
ConfigKey
<
String
>
IDENTITY_MANAGER_ENDPOINT_USERNAME
=
new
BasicConfigKey
<
String
>(
String
.
class
,
"identityManagerEndpointUsername"
,
"Username for accessing the Identity Manager"
,
null
);
public
static
final
ConfigKey
<
String
>
IDENTITY_MANAGER_ENDPOINT_PASSWORD
=
new
BasicConfigKey
<
String
>(
String
.
class
,
"identityManagerEndpointPassword"
,
"Password for the Identity Manager"
,
null
);
@SuppressWarnings
(
"serial"
)
public
static
final
ConfigKey
<
Collection
<
MachineLocationCustomizer
>>
MACHINE_LOCATION_CUSTOMIZERS
=
ConfigKeys
.
newConfigKey
(
new
TypeToken
<
Collection
<
MachineLocationCustomizer
>>()
{},
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment