Skip to content
Snippets Groups Projects
Commit 480f3e98 authored by Joris Kuipers's avatar Joris Kuipers
Browse files

Ensure 'enabled' property shows up in code assist

parent 07d09d1c
No related branches found
No related tags found
No related merge requests found
...@@ -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;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment