Brian Freeman [Wed, 16 May 2018 15:29:12 +0000 (10:29 -0500)]
Add guard time to keystone expiry
Issue-ID: SO-622
Change-Id: If8260ee70d3c632325939affcbd80258b2602c99
Signed-off-by: Brian Freeman <bf1936@att.com>
Rob Daugherty [Tue, 15 May 2018 17:23:01 +0000 (13:23 -0400)]
WorkflowResponse json issues
This commit adds some robustness to the interface between the
API-H and BPMN, specifically, in how the response is handled.
I don't have proof, but there appears to be some randomness to
the json provider behavior when used with the jax-rs. Sometimes,
the serializer is adding the root element, and sometimes it
is not. Maybe there's something wrong with the configuration.
Maybe we have competing json providers. I couldn't pin this
down.
I'm almost certain it is the presence of the root element in
the content that causes the API-H code to fail parsing of the
BPMN response. This doesn't kill the request, as you might
expect, but rather, the API-H passes the BPMN response through
to the client (VID, or policy, or whatever).
The original problem (SO-586) was "fixed" by "removing the
wrapper". This "wrapper" is a needed feature of the interface
between BPMN and the API-H. We shouldn't have removed it.
The fact that the "fix" appeared to work is due to the
behavior I described in the previous paragraph. The API-H
chokes on the message, and it passes it through unchanged.
Not really what we want.
So, I don't know why the jackson/json behavior is flaky and
different now, but I can (and did) modify the API-H so it can
parse a json message whether or not it has a root element.
Note that WorkflowResponse.java (in BPMN) and CamundaResponse.java
(in the API-H) are basically the same bean representing the
message format. Seems less than ideal to have two different
classes.
Also note that I changed the name of the "response" attribute
of the WorkflowResponse and CamundaResponse classes to "content".
Got tired of seeing this nonsense everywhere in the code:
response.getResponse()
Change-Id: Icaf70f8457de99e493cf882170fe778c620308c9
Issue-ID: SO-586
Issue-ID: SO-618
Signed-off-by: Rob Daugherty <rd472p@att.com>
Arthur Martella [Mon, 14 May 2018 18:22:16 +0000 (14:22 -0400)]
Unwrap root value of request body
Change-Id: I04144bbd22773dfda08d7b13f16080930b7edb3a
Issue-ID: SO-621
Signed-off-by: Arthur Martella <am153x@att.com>
Lukasz Muszkieta [Mon, 7 May 2018 08:34:43 +0000 (10:34 +0200)]
Add junit for project mso-catalog-db-adapter
Change-Id: I7b28cc713929400b03b7e567bf9823d82631a1e9
Issue-ID: SO-617
Signed-off-by: Lukasz Muszkieta <lukasz.muszkieta@nokia.com>
Arthur Martella [Thu, 10 May 2018 18:09:52 +0000 (14:09 -0400)]
Add onap/so alias to docker build
Change-Id: I57525e367ddf5bdbbc13f9efa9e93fda4fb6748e
Issue-ID: SO-372
Signed-off-by: Arthur Martella <am153x@att.com>
Seshu Kumar M [Thu, 10 May 2018 12:22:45 +0000 (12:22 +0000)]
Merge "Resolved License Issues for packages"
Seshu Kumar M [Thu, 10 May 2018 10:50:31 +0000 (10:50 +0000)]
Merge "Close db connections in finally block"
sanchitap [Thu, 10 May 2018 10:21:59 +0000 (15:51 +0530)]
Resolved License Issues for packages
csar files:
1. resource_Extvl.csar
2. service-ServiceFdnt-csar-0904-2.csar
3. service-ServiceFdnt-with-allotted.csar
4. service_Rg516VmmscSrvc_csar.csar
Change-Id: I9e56bf3beaeeb858d91c4e9928789458ed9ba75f
Issue-ID: SO-611
Signed-off-by: sanchitap <sanchita@techmahindra.com>
Seshu Kumar M [Thu, 10 May 2018 10:03:37 +0000 (10:03 +0000)]
Merge "Resolved License Issues for asdc-controller"
Ethan Lynn [Thu, 10 May 2018 09:32:19 +0000 (17:32 +0800)]
Close db connections in finally block
Fix bugs reported by sonar
Change-Id: I0d3445856eb45533d904443b60d75c8aa03e5881
Issue-ID: SO-580
Signed-off-by: Ethan Lynn <ethanlynnl@vmware.com>
sanchitap [Thu, 10 May 2018 08:38:01 +0000 (14:08 +0530)]
Resolved License Issues for asdc-controller
csar files:
1. resource_Extvl.csar
2. service-ServiceFdnt-csar-0904-2.csar
3. service-ServiceFdnt-with-allotted.csar
4. service_Rg516VmmscSrvc_csar.csar
Change-Id: I8688a8a29508c9332eaa8a0130ff2f79db5308dd
Issue-ID: SO-611
Signed-off-by: sanchitap <sanchita@techmahindra.com>
Ethan Lynn [Thu, 10 May 2018 07:26:22 +0000 (15:26 +0800)]
Fix bugs reported by sonar
Use new variable in convertJsonToCloudOrchestrationRequest,
fix bug reported by sonar.
Change-Id: I3f95bd410d950d4661584c1510a66ce90d6785d5
Issue-ID: SO-580
Signed-off-by: Ethan Lynn <ethanlynnl@vmware.com>
sanchitap [Wed, 9 May 2018 06:22:41 +0000 (11:52 +0530)]
SO API doc update
Invenroty and MultiVIM APIs updated
Change-Id: Ia72eaae208f94f2dff59a833661b181b6df1768b
Issue-ID: SO-413
Signed-off-by: sanchitap <sanchita@techmahindra.com>
Rob Daugherty [Tue, 8 May 2018 22:48:31 +0000 (22:48 +0000)]
Merge "Remove wrapper from WorkflowResponse"
Arthur Martella [Tue, 8 May 2018 15:11:47 +0000 (11:11 -0400)]
Remove wrapper from WorkflowResponse
When the workflow response succeeds, the requestReferences object is being wrapped by "WorkflowResponse": {"response": {... and all the other fields from the WorkflowResponse object are being included as well. Adding a WorkflowResponseSerializer didn't seem to work since the root node was still included and there was no ObjectMapper in which to set WrapRootValue to false. So this is the next best thing.
Patch 2 fixes most of the broken unit tests.
Change-Id: Ifa5bd02e70b23f41c9042ac207848c8ade77313a
Issue-ID: SO-586
Signed-off-by: Arthur Martella <am153x@att.com>
sanchitap [Mon, 7 May 2018 11:16:09 +0000 (16:46 +0530)]
SO API doc update
UUI APIs, SDC APIs updated
Change-Id: I77a245217197b95b1735e75c8ff0bb09c2772d70
Issue-ID: SO-413
Signed-off-by: sanchitap <sanchita@techmahindra.com>
Rob Daugherty [Mon, 7 May 2018 13:23:55 +0000 (09:23 -0400)]
vnf-adapter failed to deploy
This is related to recent CloudConfig fixes. One change was apparently
not submitted in the last batch.
Change-Id: I8dcc49f7d808e0d842af3f568f5815fb48870acc
Issue-ID: SO-584
Signed-off-by: Rob Daugherty <rd472p@att.com>
Seshu Kumar M [Mon, 7 May 2018 10:44:09 +0000 (10:44 +0000)]
Merge "Fix for FileNotFoundException in MsoLoggerTest"
Seshu Kumar M [Mon, 7 May 2018 10:41:26 +0000 (10:41 +0000)]
Merge "updated createvfmoduleinfra flow version number"
Seshu Kumar M [Mon, 7 May 2018 10:40:50 +0000 (10:40 +0000)]
Merge "fixed bug in createvnfinfra bpmn"
Seshu Kumar M [Mon, 7 May 2018 10:39:56 +0000 (10:39 +0000)]
Merge "SO API document"
Michal Kabaj [Fri, 4 May 2018 11:30:59 +0000 (13:30 +0200)]
Fix for FileNotFoundException in MsoLoggerTest
Remove over 100 whitespaces from logger filename which causes the unit
tests to fail in some development environments.
Change-Id: I068f4d4562b635b19889c3537282949665348c21
Issue-ID: SO-604
Signed-off-by: Michal Kabaj <michal.kabaj@nokia.com>
sanchitap [Fri, 4 May 2018 06:32:25 +0000 (12:02 +0530)]
SO API document
VFC APIs, Policy APIs updated
Change-Id: I492cc817f57d6f6410ba5ae3cdef6c9f3db1786d
Issue-ID: SO-413
Signed-off-by: sanchitap <sanchita@techmahindra.com>
subhash kumar singh [Thu, 3 May 2018 09:14:35 +0000 (09:14 +0000)]
Use tosca parser without resolving GetInput
Use tosca parser without resolving GetInput.
Change-Id: I964464dd76c0bdd096e67ce78ab4cc7c2e76a167
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
subhash kumar singh [Wed, 2 May 2018 09:41:24 +0000 (09:41 +0000)]
Fix progress update for VFC resources
Fix progress update for VFC resources.
Change-Id: Ibd7d8fb3a399ae2b40ca82e459a7e47c05cbac6a
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
subhash kumar singh [Wed, 2 May 2018 09:40:27 +0000 (09:40 +0000)]
Set operation type value
Set operation type value, to reflect in DB entries.
Change-Id: I2f56bf5f33912645d17bbed2fc759f9354a0ba7b
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
subhash kumar singh [Wed, 2 May 2018 09:39:16 +0000 (09:39 +0000)]
Fix warning in DoDeleteE2E bpmn file
Fix warning in DoDeleteE2E bpmn file.
Change-Id: I50b1ad5502fc08692775d2f5d9050c3796dd32b1
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Bancala, Ben (bb3476) [Thu, 3 May 2018 20:14:19 +0000 (16:14 -0400)]
updated createvfmoduleinfra flow version number
Change-Id: I0a166b867dcacad4133c8fc679606c381cb5389a
Issue-ID: SO-602
Signed-off-by: Bancala, Ben (bb3476) <bb3476@att.com>
Bancala, Ben (bb3476) [Thu, 3 May 2018 15:50:13 +0000 (11:50 -0400)]
fixed bug in createvnfinfra bpmn
Change-Id: I3e27ec0d1487eb68e8c54d27508b58233bf49808
Issue-ID: SO-602
Signed-off-by: Bancala, Ben (bb3476) <bb3476@att.com>
Rob Daugherty [Wed, 2 May 2018 20:46:14 +0000 (16:46 -0400)]
Fix CloudConfig junits
...for some definition of the word "fix". There is still a lot
that's less than ideal about how CloudConfig is handled, and with
how the unit tests are written.
Change-Id: Ic8c66c64d336f22c141687cf41a4828810bf1aec
Issue-ID: SO-584
Signed-off-by: Rob Daugherty <rd472p@att.com>
Arthur Martella [Fri, 4 May 2018 14:56:35 +0000 (10:56 -0400)]
Add enforcer.skip to pom.xml
To prevent appc snapshot problem
Also change appc version to SNAPSHOT
Change-Id: Ifce05b7f44ccc70a2d654526d67da873dd325dcd
Issue-ID: SO-605
Signed-off-by: Arthur Martella <am153x@att.com>
Arthur Martella [Thu, 3 May 2018 20:22:39 +0000 (16:22 -0400)]
ecomp-model-information to onap-model-information
Change-Id: I05f4648ff898a54e7a00d899d97129746172cdb4
Issue-ID: SO-603
Signed-off-by: Arthur Martella <am153x@att.com>
Rob Daugherty [Tue, 1 May 2018 19:48:21 +0000 (15:48 -0400)]
SDNC Adapter not loading properties
Somebody changed some variables from static to non-static, and this
broke the CloudConfig loading logic.
I changed them back.
Change-Id: Id7dca76a4f0af0209ebd6cef8f3e0209c3f7a022
Issue-ID: SO-584
Signed-off-by: Rob Daugherty <rd472p@att.com>
Seshu Kumar M [Sat, 28 Apr 2018 11:40:55 +0000 (11:40 +0000)]
Merge "Fix null attribute for aai relationship"
Seshu Kumar M [Sat, 28 Apr 2018 11:40:36 +0000 (11:40 +0000)]
Merge "createvfcns serviceInstanceid is null bug fix"
Seshu Kumar M [Sat, 28 Apr 2018 11:38:03 +0000 (11:38 +0000)]
Merge "Add correlationId to ServiceInstancesRequest"
Yulian Han [Fri, 27 Apr 2018 10:05:39 +0000 (18:05 +0800)]
createvfcns serviceInstanceid is null bug fix
deleteResource bugs fix
Change-Id: Idaa55084f5ecb0dd3636c232cebc14fa5f06430a
Issue-ID: SO-578
Signed-off-by: Yulian Han <elaine.hanyulian@huawei.com>
Lukasz Muszkieta [Fri, 27 Apr 2018 13:22:06 +0000 (15:22 +0200)]
Add correlationId to ServiceInstancesRequest
Change-Id: Idc5ee56660da31f08fd8ed3a67b7cd28f9844f43
Issue-ID: SO-596
Signed-off-by: Lukasz Muszkieta <lukasz.muszkieta@nokia.com>
subhash kumar singh [Fri, 27 Apr 2018 11:36:13 +0000 (11:36 +0000)]
Fix null attribute for aai relationship
Fix null attribute for aai relationship.
Change-Id: Ifa3a7ec7101c1564be68d97a70d0cafd40d581fe
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
c00149107 [Fri, 27 Apr 2018 09:22:59 +0000 (17:22 +0800)]
Change to sdncadapter for service call
Change to sdncadapter for service call
Change-Id: I9011e69fba20d4d0f83705455791b7357e2f5bb0
Issue-ID: SO-587
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
Seshu Kumar M [Fri, 27 Apr 2018 04:50:57 +0000 (04:50 +0000)]
Merge "SDNC Adapter not loading properties"
Rob Daugherty [Thu, 26 Apr 2018 23:18:15 +0000 (23:18 +0000)]
Merge "Remove operation status set in api-handler"
Rob Daugherty [Thu, 26 Apr 2018 23:17:34 +0000 (23:17 +0000)]
Merge "Add NS relationship delete for E2E service"
Rob Daugherty [Thu, 26 Apr 2018 23:16:32 +0000 (23:16 +0000)]
Merge "Fix value for VFC sync response"
subhash kumar singh [Thu, 26 Apr 2018 12:53:50 +0000 (12:53 +0000)]
Add NS relationship delete for E2E service
Add NS relationship delete for E2E service
Change-Id: Ia58308dae0fef38b32098d1e92c0871617a86ed2
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
sanchitap [Thu, 26 Apr 2018 11:13:49 +0000 (16:43 +0530)]
SO North Bound APIs doc
SO North Bound APIs document
Change-Id: I26789d249926e192ae6a0b59804dfeb3aef740a2
Issue-ID: SO-595
Signed-off-by: sanchitap <sanchita@techmahindra.com>
subhash kumar singh [Thu, 26 Apr 2018 10:35:15 +0000 (10:35 +0000)]
Fix value for VFC sync response
Fix value for VFC sync response.
Change-Id: Ie663f9080c051b9302dd4729aea5640c5289e14c
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
c00149107 [Thu, 26 Apr 2018 03:53:15 +0000 (11:53 +0800)]
Remove operation status set in api-handler
Remove operation status set in api-handler
Change-Id: I579d25044130b0701231c0a2d42534e8c63e3ebd
Issue-ID: SO-587
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
Rob Daugherty [Wed, 25 Apr 2018 22:10:24 +0000 (18:10 -0400)]
SDNC Adapter not loading properties
We are missing 2 source files in SO which were part of MSO 1802:
CloudConfigInitializer.java
CloudConfigIdentityMapper.java
The missing initializer means that cloud-config.json is never loaded.
Change-Id: Id1186edda01d345de072b5288382dbdc56679294
Issue-ID: SO-584
Signed-off-by: Rob Daugherty <rd472p@att.com>
chenying83 [Thu, 26 Apr 2018 08:20:10 +0000 (08:20 +0000)]
Fix library CVEs in SO
Fix additional CVEs:
commons-fileupload 1.3.3
For CVE-2016-
1000031
logback 1.1.11
For CVE-2017-5929
springframework 4.3.14.RELEASE
For CVE-2014-0225 CVE-2015-5211
Issue-ID: SO-579
Change-Id: I94f8332d420d2586262260a0a59a645f0de66b73
Signed-off-by: chenying83 <chenying83@huawei.com>
Chuanyu Chen [Thu, 26 Apr 2018 03:08:45 +0000 (03:08 +0000)]
Merge "Fix VFCNS termination invocation"
Chuanyu Chen [Thu, 26 Apr 2018 03:08:38 +0000 (03:08 +0000)]
Merge "Add service operation initialtion in request db"
subhash kumar singh [Wed, 25 Apr 2018 15:41:57 +0000 (15:41 +0000)]
Fix VFCNS termination invocation
Fix VFCNS termination invocation
Change-Id: Ib30f0a3e4365e215f6da0a693f78825d5a2d32c9
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
subhash kumar singh [Wed, 25 Apr 2018 15:40:00 +0000 (15:40 +0000)]
Add service operation initialtion in request db
Add service operation initialtion in request db
Change-Id: I2aed78e5cda753b5424b8a8c39e9997a7a7dd61c
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Seshu Kumar M [Wed, 25 Apr 2018 12:15:04 +0000 (12:15 +0000)]
Merge "PnfReadyEventConsumer implementation"
Seshu Kumar M [Wed, 25 Apr 2018 12:14:34 +0000 (12:14 +0000)]
Merge "Add sync response for VFCNS delete"
Seshu Kumar M [Wed, 25 Apr 2018 12:13:45 +0000 (12:13 +0000)]
Merge "Fix service topology deletion"
Seshu Kumar M [Wed, 25 Apr 2018 12:12:34 +0000 (12:12 +0000)]
Merge "SO API doc"
sanchitap [Wed, 25 Apr 2018 09:40:47 +0000 (15:10 +0530)]
SO API doc
Create service instance RequestDetails object
Change-Id: I9ff684959c4173f834d424fb2c9a559d32b91182
Issue-ID: SO-413
Signed-off-by: sanchitap <sanchita@techmahindra.com>
Seshu Kumar M [Wed, 25 Apr 2018 10:20:11 +0000 (10:20 +0000)]
Merge "Set Resource Recipe Time Out Val"
subhash kumar singh [Wed, 25 Apr 2018 10:05:06 +0000 (10:05 +0000)]
Add sync response for VFCNS delete
Add sync response for VFCNS delete
Change-Id: I4917f0a83fc0c33d51b9b90d91f10dbdc023e690
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Lukasz Muszkieta [Wed, 25 Apr 2018 09:54:47 +0000 (11:54 +0200)]
PnfReadyEventConsumer implementation
Change-Id: Ic8d5814c555bad436bfcbe1b4e212637a6800947
Issue-ID: SO-466
Signed-off-by: Lukasz Muszkieta <lukasz.muszkieta@nokia.com>
subhash kumar singh [Wed, 25 Apr 2018 09:19:43 +0000 (09:19 +0000)]
Fix service topology deletion
Fix request body for service topology deletion.
Issue-ID: SO-422
Change-Id: Ic2e7cc74dd45dbc4b4a190a159f3ebb852e02b84
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
c00149107 [Wed, 25 Apr 2018 09:19:13 +0000 (17:19 +0800)]
Set Resource Recipe Time Out Val
Set Resource Recipe Time Out Val
Change-Id: I7f304465c71837ee37e5fa99a48ca14d97d8f91f
Issue-ID: SO-587
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
Yulian Han [Wed, 25 Apr 2018 08:04:19 +0000 (16:04 +0800)]
add serviceDecomposition input para for deleteE2E
Change-Id: Idaa55084f5ecb0dd3636c232cebc14fa5f064309
Issue-ID: SO-578
Signed-off-by: Yulian Han <elaine.hanyulian@huawei.com>
Seshu Kumar M [Wed, 25 Apr 2018 05:19:26 +0000 (05:19 +0000)]
Merge "Update Delete Resource Flow"
c00149107 [Wed, 25 Apr 2018 02:05:25 +0000 (10:05 +0800)]
Update Delete Resource Flow
Update Delete Resource Flow
Change-Id: Ie6270d954fc1c703de4bdd0c8f1e543a155060d1
Issue-ID: SO-587
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
AS00465059 [Wed, 25 Apr 2018 03:48:47 +0000 (09:18 +0530)]
Sonar-Critical:Use Dedicated Exception
File Name:ApplicationControllerAction.java
Line: L127 L134 L142 L150 L155 L160 L165
Sonar Link:
https://sonar.onap.org/project/issues?assignees=as00465059&id=org.onap.so%3Aso&open=AWJuJvroRGy6eclHE9B2&resolved=false&rules=squid%3AS00112&severities=CRITICAL%2CMAJOR
Change-Id: I84c79aef3ceda73b9421b0a1881c5d14817c7840
Issue-ID: SO-593
Signed-off-by: AS00465059 <AS00465059@techmahindra.com>
Seshu Kumar M [Wed, 25 Apr 2018 01:42:23 +0000 (01:42 +0000)]
Merge "Create VF Module Error"
Rob Daugherty [Tue, 24 Apr 2018 20:31:33 +0000 (16:31 -0400)]
Support for new AAI certificate
Change-Id: I09d207b513008184765ed8db1ec6817323f83a10
Issue-ID: SO-589
Signed-off-by: Rob Daugherty <rd472p@att.com>
Rob Daugherty [Tue, 24 Apr 2018 17:53:25 +0000 (13:53 -0400)]
Create VF Module Error
There are multiple issues here.
1) The LCM healthcheck and config-scale-out should be made
conditional upon the VNF orchestration status being Active
or Activated. I'm not going to do that with this commit,
since the logic will probably need to be moved to the
DoCreateVfModule flow. What I will do is bypass the LCM
operations to unblock testing. Another ticket will need
to address the real solution.
2) APP-C gave us an API where the controller type is configured
in their client object, which is NOT what we wanted. As a
result, we have to keep a client object for each controller
type. Our implementation did not do this.
3) Need to support the APP-C client configuration properties
for specifying the SDN-C topic names. I'm refactoring the
APP-C client urn mapping names to make it clear that they
are for configuring the APP-C *client* and not necessarily
for APP-C itself.
Change-Id: I588f3b98b4ee44ba53b4931f9f1a7938ee70bebf
Issue-ID: SO-577
Signed-off-by: Rob Daugherty <rd472p@att.com>
Seshu Kumar M [Tue, 24 Apr 2018 15:29:30 +0000 (15:29 +0000)]
Merge "Fix to get the resource from ordered list"
Seshu Kumar M [Tue, 24 Apr 2018 14:42:53 +0000 (14:42 +0000)]
Merge "SO API documentation"
Seshu Kumar M [Tue, 24 Apr 2018 14:36:09 +0000 (14:36 +0000)]
Merge "Fix SDNC resource deletion for E2E service"
Seshu Kumar M [Tue, 24 Apr 2018 13:40:56 +0000 (13:40 +0000)]
Merge "Fix library CVEs in SO"
subhash kumar singh [Tue, 24 Apr 2018 13:32:23 +0000 (13:32 +0000)]
Fix to get the resource from ordered list
Fix to get the resource from ordered list
Change-Id: I43a7a33a7d2464d7580f175807a1b42d2dce94f2
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
sanchitap [Tue, 24 Apr 2018 13:32:07 +0000 (19:02 +0530)]
SO API documentation
Create service instance RequestDetails object
Change-Id: I0e7651a927b166a151da427fc3429b29e4b80ec4
Issue-ID: SO-413
Signed-off-by: sanchitap <sanchita@techmahindra.com>
Seshu Kumar M [Tue, 24 Apr 2018 13:26:54 +0000 (13:26 +0000)]
Merge "Fix the variables in delete E2E workflow"
subhash kumar singh [Tue, 24 Apr 2018 12:47:08 +0000 (12:47 +0000)]
Fix SDNC resource deletion for E2E service
Fix SDNC resource deletion for E2E service.
Change-Id: I954c39044b4e4384a7941b6b6c5a0cccc57cf9b3
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
AS00465059 [Tue, 24 Apr 2018 10:46:23 +0000 (16:16 +0530)]
Sonar-Critical: Use Dedicated Exception
File: VfModuleCustomizationToVduMapper.java
Line: L56 L79 L88 L112 L127 L141
Sonar Link:
https://sonar.onap.org/project/issues?assignees=as00465059&id=org.onap.so%3Aso&open=AWJqzmfZRGy6eclHEzWx&resolved=false&severities=CRITICAL
Change-Id: I4fd2494ee4d883910cc1d78785665d3f0c5fdd92
Issue-ID: SO-590
Signed-off-by: AS00465059 <AS00465059@techmahindra.com>
subhash kumar singh [Tue, 24 Apr 2018 08:53:39 +0000 (08:53 +0000)]
Fix the variables in delete E2E workflow
Fix the variables in delete E2E workflow.
Change-Id: I23973d475ebc634f30bbb913d51b581c1222be7a
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Sumapriya [Tue, 24 Apr 2018 07:11:00 +0000 (12:41 +0530)]
Sonar Major Bug Fixing
File:E2EServiceInstances.java
Line:L706
Sonar
Link:https://sonar.onap.org/project/issues?assigned=false&id=org.onap.so%3Aso&open=AWJskpquRGy6eclHE4zt&resolved=false&rules=squid%3AS1132&severities=MAJOR
Change-Id: Iba618d98de4153deefa3822240b3ec29226bef68
Issue-ID: SO-592
Signed-off-by: Sumapriya <SS00493505@techmahindra.com>
Seshu Kumar M [Tue, 24 Apr 2018 04:29:50 +0000 (04:29 +0000)]
Merge "Update resource instance id for Decomposed service"
Chuanyu Chen [Tue, 24 Apr 2018 01:26:43 +0000 (01:26 +0000)]
Merge "Fix request header for SDNC resource request"
Chuanyu Chen [Tue, 24 Apr 2018 01:26:26 +0000 (01:26 +0000)]
Merge "Add generic workflow for delete NS"
subhash kumar singh [Mon, 23 Apr 2018 12:56:36 +0000 (12:56 +0000)]
Fix request header for SDNC resource request
Fix request header for SDNC resource request.
Change-Id: I254d7139fcbeec00a98f44c8db3661da0425f8c7
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
subhash kumar singh [Mon, 23 Apr 2018 12:52:44 +0000 (12:52 +0000)]
Add generic workflow for delete NS
Add generic workflow for delete NS.
Change-Id: I2bc1fe01aec3066e7ec6d8627c8bdcb79ce262fc
Issue-ID: SO-422
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
c00149107 [Mon, 23 Apr 2018 11:42:22 +0000 (19:42 +0800)]
Update resource instance id for Decomposed service
Update resourceinstanceid for Decomposed service
Change-Id: Iaadd8b6d3fb861058eed56cbf33b3a0dc6a060d0
Issue-ID: SO-587
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
Seshu Kumar M [Mon, 23 Apr 2018 11:01:07 +0000 (11:01 +0000)]
Merge "Sonar Major Bug Fixing"
maopeng zhang [Mon, 23 Apr 2018 10:54:08 +0000 (10:54 +0000)]
Merge "Add 'not found in AAI' for updateE2E syncresponse"
chenying83 [Mon, 23 Apr 2018 09:59:52 +0000 (09:59 +0000)]
Fix library CVEs in SO
Fix additional CVEs:
Also refactored to use ubuntu apt repos instead of
manually installing from launchpad.
Issue-ID: SO-579
Change-Id: I58e29a7e0188452789741087bc9c4af82f102b09
Signed-off-by: chenying83 <chenying83@huawei.com>
Sumapriya [Mon, 23 Apr 2018 10:01:07 +0000 (15:31 +0530)]
Sonar Major Bug Fixing
File: MsoVnfAdapterImpl.java
Sonar Link:
https://sonar.onap.org/project/issues?assigned=false&id=org.onap.so%3Aso&open=AWHCr-UwEU5FCDfKtmD4&resolved=false&rules=squid%3AS1481&severities=MAJOR
Location:
src/main/java/org/openecomp/mso/adapters/vnf/MsoVnfAdapterImpl.java
Line No:L1888
File: E2EServiceInstances.java
Sonar Link:
https://sonar.onap.org/project/issues?assigned=false&id=org.onap.so%3Aso&open=AWHCr-iMEU5FCDfKtmO-&resolved=false&rules=squid%3AS1481&severities=MAJOR
Location:
src/main/java/org/openecomp/mso/apihandlerinfra/E2EServiceInstances.java
Line No:L1326
File: MsoRequest.java
Sonar Link:
https://sonar.onap.org/project/issues?assigned=false&id=org.onap.so%3Aso&open=AWHCr-jXEU5FCDfKtmSQ&resolved=false&rules=squid%3AS1481&severities=MAJOR
Location:
src/main/java/org/openecomp/mso/apihandlerinfra/MsoRequest.java
Line No:L916
File: SdncUnderlayVpnOperationClient.java
Sonar Link:
https://sonar.onap.org/project/issues?assigned=false&id=org.onap.so%3Aso&open=AWIP10X8RGy6eclHDJ5J&resolved=false&rules=squid%3AS1481&severities=MAJOR
Location:
src/main/java/org/opencomp/mso/bpmn/infrastructure/workflow/serviceTask/SdncUnderlayVpnOperationClient.java
Line No:L70
Change-Id: Id2548cb7e9ef2a916d5adbd93fa5ded4fba6d7ab
Issue-ID: SO-582
Signed-off-by: Sumapriya <SS00493505@techmahindra.com>
Yulian Han [Mon, 23 Apr 2018 09:40:44 +0000 (17:40 +0800)]
Add 'not found in AAI' for updateE2E syncresponse
add 'operaterID' input para to call deleteE2Em
Change-Id: Idaa55084f5ecb0dd3636c232cebc14fa5f064308
Issue-ID: SO-578
Signed-off-by: Yulian Han <elaine.hanyulian@huawei.com>
maopeng zhang [Mon, 23 Apr 2018 09:12:38 +0000 (09:12 +0000)]
Merge "Update resource UUids for resource status"
Seshu Kumar M [Mon, 23 Apr 2018 08:44:47 +0000 (08:44 +0000)]
Merge "Added canceling subsription to pnf-pnp workflow"
Seshu Kumar M [Mon, 23 Apr 2018 08:43:18 +0000 (08:43 +0000)]
Merge "Sonar-Critical Bug Fixing"
c00149107 [Mon, 23 Apr 2018 08:05:56 +0000 (16:05 +0800)]
Update resource UUids for resource status
Update resource UUids for resource status
Change-Id: I37bd5f9c6a2b30695b39e78dc64ab219831a3828
Issue-ID: SO-587
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
AS00465059 [Mon, 23 Apr 2018 05:27:52 +0000 (10:57 +0530)]
Sonar-Critical Bug Fixing
File:RestfulUtil.java
Line:L85
Sonar Link:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
File:E2EServiceInstances.java
Line:L263 L1059
Sonar Link:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
File:OrchestrationRequests.java
Line:L343
Sonar Link:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
File:ASDCConfiguration.java
Line:L286 L378
SonarLink:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
File:ResourceInput.java
Line:L287
Sonar Link:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
File:ResourceRecipeRequest.java
Line:L136
Sonar Link:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
File:ResourceRequestBuilder.java
Line:L108 L214
Sonar Link:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
File:CheckAaiForCorrelationIdDelegate.java
Line:L70
Sonar Link:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
File:AbstractSdncOperationTask.java
Line:L359
Sonar Link:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
File:DmaapClient.java
Line:L62
Sonar Link:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
File:HasAnnotationPropertyWithValueMatcher.java
Line:L60
Sonar Link:
https://sonar.onap.org/issues?assigned=false&projectUuids=AWHCr9eDWid2ybiDeORt&resolved=false&rules=squid%3AS1166&severities=BLOCKER%2CCRITICAL
Change-Id: Ic168a118790c31850a9f32f98465be5d52b8c96f
Issue-ID: SO-581
Signed-off-by: AS00465059 <AS00465059@techmahindra.com>
c00149107 [Mon, 23 Apr 2018 03:37:23 +0000 (11:37 +0800)]
Update response for delete e2e service
Update response for delete e2e service
Change-Id: I8cd96981e085111e55211e8a24cb3b2cebe7ef9a
Issue-ID: SO-587
Signed-off-by: c00149107 <chenchuanyu@huawei.com>
Chuanyu Chen [Sun, 22 Apr 2018 06:22:31 +0000 (06:22 +0000)]
Merge "UpdateAAI lost serviceInstVersion and modeluuid"