diff options
author | jwang5 <jing.wang5@huawei.com> | 2017-06-29 10:46:15 -0500 |
---|---|---|
committer | jwang5 <jing.wang5@huawei.com> | 2017-06-29 10:46:37 -0500 |
commit | 30e39eaca3b2e24e4b1a56bc0b364233a8393b8b (patch) | |
tree | 61842ec390c20318ac2095a44a79b7892642f469 /restapi-call-node | |
parent | 0079cf2b72dcdafaa8234cba4d743e5642543cfe (diff) |
should fix the setter not the getter
Change-Id: Ie8022dce72d3c6661c5f75a840d72f8bf2f0f47a
Signed-off-by: jwang5 <jing.wang5@huawei.com>
Diffstat (limited to 'restapi-call-node')
-rw-r--r-- | restapi-call-node/provider/src/main/java/org/openecomp/sdnc/restapicall/RestapiCallNode.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/restapi-call-node/provider/src/main/java/org/openecomp/sdnc/restapicall/RestapiCallNode.java b/restapi-call-node/provider/src/main/java/org/openecomp/sdnc/restapicall/RestapiCallNode.java index 3bb0eb4..e42771c 100644 --- a/restapi-call-node/provider/src/main/java/org/openecomp/sdnc/restapicall/RestapiCallNode.java +++ b/restapi-call-node/provider/src/main/java/org/openecomp/sdnc/restapicall/RestapiCallNode.java @@ -67,11 +67,11 @@ public class RestapiCallNode implements SvcLogicJavaPlugin { private String defaultUebTemplateFileName = "/opt/bvc/restapi/templates/default-ueb-message.json"; protected RetryPolicyStore retryPolicyStore; - public RetryPolicyStore getRetryPolicyStore() { + protected RetryPolicyStore getRetryPolicyStore() { return retryPolicyStore; } - protected void setRetryPolicyStore(RetryPolicyStore retryPolicyStore) { + public void setRetryPolicyStore(RetryPolicyStore retryPolicyStore) { this.retryPolicyStore = retryPolicyStore; } |