diff options
author | anjali.walsatwar <anjali.walsatwar@huawei.com> | 2019-08-12 14:43:56 +0530 |
---|---|---|
committer | anjali.walsatwar <anjali.walsatwar@huawei.com> | 2019-08-12 14:43:56 +0530 |
commit | e3d04c27550d4b3b8e60fd47251625d7278ae2b4 (patch) | |
tree | 33253a13bd610982c4802911445d9b43fe0e1971 /bpmn | |
parent | b33691c6921e7750a21d551a62435ecde1cc564f (diff) |
DeleteVFCNSResource.groovy corrected
groovy file correction
Issue-ID: SO-2212
Signed-off-by: anjali.walsatwar <anjali.walsatwar@huawei.com>
Change-Id: I2fead52822d107ad712624ba9a37c959eae8c077
Diffstat (limited to 'bpmn')
-rw-r--r-- | bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DeleteVFCNSResource.groovy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DeleteVFCNSResource.groovy b/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DeleteVFCNSResource.groovy index 9b269c734f..642609a970 100644 --- a/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DeleteVFCNSResource.groovy +++ b/bpmn/so-bpmn-infrastructure-common/src/main/groovy/org/onap/so/bpmn/infrastructure/scripts/DeleteVFCNSResource.groovy @@ -63,14 +63,14 @@ public class DeleteVFCNSResource extends AbstractServiceTaskProcessor { logger.info(" ***** end preProcessRequest *****") } - public void postProcessRequest (DelegateExecution execution) { + void postProcessRequest (DelegateExecution execution) { def isDebugEnabled = execution.getVariable("isDebugLogEnabled") logger.info(" ***** start postProcessRequest *****") logger.info(" ***** end postProcessRequest *****") } - public void sendSyncResponse (DelegateExecution execution) { + void sendSyncResponse (DelegateExecution execution) { def isDebugEnabled=execution.getVariable("isDebugLogEnabled") logger.debug( " *** sendSyncResponse *** ") |