Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spring-cloud-aws-param-store
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joris Kuipers
spring-cloud-aws-param-store
Commits
480f3e98
Commit
480f3e98
authored
7 years ago
by
Joris Kuipers
Browse files
Options
Downloads
Patches
Plain Diff
Ensure 'enabled' property shows up in code assist
parent
07d09d1c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/nl/trifork/aws/paramstore/AwsParamStoreProperties.java
+10
-0
10 additions, 0 deletions
...va/nl/trifork/aws/paramstore/AwsParamStoreProperties.java
with
10 additions
and
0 deletions
src/main/java/nl/trifork/aws/paramstore/AwsParamStoreProperties.java
+
10
−
0
View file @
480f3e98
...
@@ -31,6 +31,9 @@ public class AwsParamStoreProperties {
...
@@ -31,6 +31,9 @@ public class AwsParamStoreProperties {
/** Alternative to spring.application.name to use in looking up values in AWS Parameter Store. */
/** Alternative to spring.application.name to use in looking up values in AWS Parameter Store. */
private
String
name
;
private
String
name
;
/** Is AWS Parameter Store support enabled. */
private
boolean
enabled
=
true
;
public
String
getPrefix
()
{
public
String
getPrefix
()
{
return
prefix
;
return
prefix
;
}
}
...
@@ -71,4 +74,11 @@ public class AwsParamStoreProperties {
...
@@ -71,4 +74,11 @@ public class AwsParamStoreProperties {
this
.
name
=
name
;
this
.
name
=
name
;
}
}
public
boolean
isEnabled
()
{
return
enabled
;
}
public
void
setEnabled
(
boolean
enabled
)
{
this
.
enabled
=
enabled
;
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment