aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2017-08-10Merge "fixed for defect SO-70 - recipe lookup mechanism doesn't allow to ↵Seshu Kumar M3-26/+55
define default recipe mapping for any 'source' at level of 'service' and 'network' resources."
2017-08-10Merge "ARIA java binding initial"Seshu Kumar M22-0/+1314
2017-08-10Merge "ARIA multivim plugin initial checkin"Seshu Kumar M72-0/+10952
2017-08-09Fix defect SO-36pranavdi1-102/+103
Modify MSOLogger to route info messages to debugmso.log instead of errormso.log Change-Id: Id985e83c336e85083764f0d52e7f7e9bb5a20595 Issue-ID: SO-36 Signed-off-by: pranavdi <Pranav.Dixit@amdocs.com>
2017-08-07ARIA multivim plugin initial checkindfilppi72-0/+10952
Change-Id: I3a24ab6fc5ba54466bfecaf596a13b8907248ae8 Issue-id: SO-77 Signed-off-by: DeWayne Filppi <dewayne@gigaspaces.com>
2017-08-07ARIA java binding initialdfilppi22-0/+1314
Change-Id: I806c879f7eddadec396adbb72f3fc2117dccbeb5 Issue-id: SO-77 Signed-off-by: DeWayne Filppi <dewayne@gigaspaces.com>
2017-08-07Merge "Another attempt to fix deploy problem"Rob Daugherty9-9/+9
2017-08-07Merge "ARIA REST server initial commit"Seshu Kumar M9-0/+832
2017-08-07Merge "Added copyright header"Seshu Kumar M1-0/+18
2017-08-04Another attempt to fix deploy problemRob Daugherty9-9/+9
The top level pom will contain: <groupId>org.openecomp.so</groupId> <artifactId>so</artifactId> Child modules will contain: <parent> <groupId>org.openecomp.so</groupId> <artifactId>so</artifactId> <version>1.1.0-SNAPSHOT</version> </parent> <groupId>org.openecomp.so</groupId> <artifactId>some-child-artifact</artifactId> Note that the groupId for the direct child module will be the same as the groupId for its parent. Issue: SO-21 Change-Id: I1976819df459d92937c6a4780959c32599dc3e71 Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-08-04Failed to deploy so artifacts in nexus (again)Rob Daugherty33-124/+124
There are Linux Foundation rules (enforced by nexus) that I still don't really understand. I'm convinced this is absolutely true: The groupId of every artifact in a project MUST begin with: org.openecomp.<project> --or-- org.onap.<project> The top-level artifact is no exception. So for example, this is NOT allowed: <groupId>org.openecomp</groupId> <artifactId>so</groupId> Here's what I'm trying now. The top level pom will contain: <groupId>org.openecomp.so</groupId> <artifactId>so-parent</artifactId> Child modules will contain: <parent> <groupId>org.openecomp.so</groupId> <artifactId>so-parent</artifactId> <version>1.1.0-SNAPSHOT</version> </parent> <groupId>org.openecomp.so</groupId> <artifactId>some-child-artifact</artifactId> Note that the groupId for the direct child module will be the same as the groupId for its parent. Issue: SO-21 Change-Id: I0d3cd2eb7a1883e23e3c0878ee7fa3dd4a7d55b2 Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-08-03ARIA REST server initial commitdfilppi9-0/+832
Change-Id: Ibb34f3d2f7c1fd63e79e6a12394a70ca09cb8034 Issue-id: SO-25 Signed-off-by: DeWayne Filppi <dewayne@gigaspaces.com>
2017-08-03Added copyright headerdfilppi1-0/+18
Change-Id: I5ff93b3d7b2c71c30a618b3224226b37bc18c05e Signed-off-by: DeWayne Filppi <dewayne@gigaspaces.com>
2017-08-03Merge "added dockerfile for Aria"Seshu Kumar M1-0/+11
2017-08-01Failed to deploy so artifacts in nexusRob Daugherty33-135/+135
More problems encountered since mso repos were renamed. We now have found that this declaration in the top-level so pom causes the deploy to fail with a 403 Forbidden error: <groupId>org.openecomp</groupId> <artifactId>so</artifactId> We are changing this to: <groupId>org.openecomp.so</groupId> <artifactId>framework</artifactId> Issue: SO-21 Change-Id: I4e21d689c73c5071bde725127bb81482ce3d91f9 Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-07-31added dockerfile for Ariadfilppi1-0/+11
Change-Id: I8b39268b774649b0da95162de6acdc03a6809224 Signed-off-by: DeWayne Filppi <dewayne@gigaspaces.com>
2017-07-27fixed for defect SO-70 - recipe lookup mechanism doesn't allow to define ↵eyalholz3-26/+55
default recipe mapping for any 'source' at level of 'service' and 'network' resources. Change-Id: I42dafa343e2e65c6e892c21de5f3f1131890b24e Signed-off-by: eyalholz <eyalh@amdocs.com>
2017-07-20More pom changes needed since repos were renamedRob Daugherty2-3/+3
I hope this will fix the daily jenkins builds. Issue: SO-65 Change-Id: Iee8e975dd894e7bd937bab0ae033188f133f5fce Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-07-20Merge "Updating Dockerfile & .gitreview"Rob Daugherty5-8/+8
2017-07-19Fix artifact group IDs (org.openecomp.so)Rob Daugherty34-155/+129
Since the repositories were renamed from "mso" to "so" the artifact group IDs in the poms must be updated to match. Issue: SO-39 Change-Id: I617fe738a77d0f6c1d1cc0ac9474fb753f4e234c Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-07-19Fix project name in .gitreview fileRob Daugherty1-1/+1
Changed: [gerrit] host=gerrit.onap.org port=29418 project=mso.git To: [gerrit] host=gerrit.onap.org port=29418 project=so.git Issue: SO-38 Change-Id: I1bc55331625504c137aeb1905b535d6acd59a931 Signed-off-by: Rob Daugherty <rd472p@att.com>
2017-07-18Updating Dockerfile & .gitreviewJulienBe6-9/+9
Moving maintainer to ONAP Updating Label to ONAP & SO .gitreview pointing to so.git Change-Id: I9fe96f88cb742cefd6ddc7fbdd4f25f264e3e0be Signed-off-by: JulienBe <jb379x@att.com>
2017-07-13Fix typoChuck Short1-1/+1
Dockerfile refers to Ubuntu not Fedora. Change-Id: Id7a76c85035d24c4591d71e40feba52f74c94c0e Signed-off-by: Chuck Short <charles.short@ericsson.com>
2017-06-06Merge "Refactor RequestsDatabase method"Christophe Closset1-42/+35
2017-06-06Merge "Simplify BaseTask and subclasses"Christophe Closset4-85/+31
2017-06-03Merge "Refactor WorkflowAsyncResource"Christophe Closset3-44/+34
2017-06-03Merge "Fix WorkflowContext.getDelay() unit conversion"Christophe Closset1-1/+1
2017-05-29[MSO-11] Update TrademarksChrisC1-3/+1
Change-Id: Ic2dc253e46a7879466695635017983b5556b946c Signed-off-by: ChrisC <cc697w@intl.att.com>
2017-05-15Refactor RequestsDatabase methodGary Wu1-42/+35
Refactor RequestsDatabase.checkInstanceNameDuplicate(). Change-Id: I274f72c874f435acbc734523f06968368e35f283 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-05-09Simplify BaseTask and subclassesGary Wu4-85/+31
Change-Id: If06c2be264003ab27090adf0a29804d961d28115 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-05-09Refactor WorkflowAsyncResourceGary Wu3-44/+34
Change-Id: I794b606687343851f71d63ac055ed1898320216a Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-05-09Fix WorkflowContext.getDelay() unit conversionGary Wu1-1/+1
The duration numbers in getDelay() are all expressed in milliseconds; the call to TimeUnit.convert() is fixed to specify milliseconds. Change-Id: I6b466f7a40a05ebe4afb1c3c39fb862eef2ae40d Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-05-09[MSO-8] Additional fixes for the second rebaseDeterme, Sebastien (sd378r)124-18801/+15910
DB fixes + BPMN flows and groovy fixes + Fix issue with CloudConfig file not reloaded properly when it's wrong (JSON error or model hierarchy mistake) at MSO startup Change-Id: I2853030b78499e2a761706b643ea210955e72de3 Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com> [MSO-8] Restore files removed in patch set 2 Those groovy files must be there Change-Id: I9a47ac3d9c8fc06774a1b8f518491b1b0b00af04 Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
2017-05-05Remove redundant class HttpHeaderGary Wu6-586/+325
The functionality of HttpHeader already exists in org.apache.http.message.BasicHeader. This change removes the HttpHeader class and replaces its uses with BasicHeader. Change-Id: I828aa7d94a1968dffd928d4ca719f0beff1a0f4b Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-05-03Merge "Using onap instead of openecomp in doc path"Christophe Closset1-1/+1
2017-05-03[MSO-8] Fix the bad provisioning row for VIDDeterme, Sebastien (sd378r)0-0/+0
There was an error in the VID network BPMN name (for the update) in the sql Change-Id: I720af8996272e101ba0bc6863bf800f921787894 Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
2017-05-03Update the sql commandxg353y1-1/+1
Update the network_recipe db table, update the bpmn script to use. Change-Id: I44f84a05629de9f550f8320b633bd9381bbe34e9 Signed-off-by: xg353y <xg353y@intl.att.com>
2017-05-03[MSO-8] Remove files that crash the commonBPMNDeterme, Sebastien (sd378r)15-2517/+0
Some files in commonBPMN have been removed as they prevent the war to be successfully deployed on Jboss + Remove rest interfaces files for catalog that should not be there anymore Change-Id: Iaf83f8b60610624e160feac8a96b7eaed7f161d1 Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
2017-05-03Using onap instead of openecomp in doc pathAnaël Closson1-1/+1
Change-Id: I29e1f18e3ae1cf04a989206cf32cfcfd0aec95a6 Signed-off-by: Anaël Closson <ac2550@intl.att.com>
2017-05-03Merge "Update .gitreview with onap URL"Christophe Closset1-1/+1
2017-05-02[MSO-8] Second step of the rebase for MSODeterme, Sebastien (sd378r)372-57188/+67123
Second rebase containing additional features for MSO + total reworking of the BPMN structure + Notification flow can now be added at the end of some BPMN flows Change-Id: I7e937c7a0ba1593ca85e164a093f79c7e38b6ce0 Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
2017-05-02Merge "Simplify InfraUtils"Christophe Closset1-17/+4
2017-05-02Merge "Fix logic error in HealthCheckHandler"Christophe Closset1-1/+1
2017-05-02Merge "Remove boxed types in MavenLikeVersioning"Christophe Closset1-27/+17
2017-05-02Merge "Fix resources leaks: CatalogDatabase"Christophe Closset3-27/+24
2017-05-02Merge "Simplify MsoHeatEnvironmentParameter methods"Christophe Closset1-12/+3
2017-05-02Merge "Add missing defensive copy to APIResponse"Christophe Closset1-7/+9
2017-04-25Add a repository to fix maven buildDeterme, Sebastien (sd378r)1-1/+7
The build was broken due to a snapshot reference, this snapshot repository is missing Change-Id: I301c37fc1c3f64dc64752df39d35780a49a88025 Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
2017-04-19Simplify InfraUtilsGary Wu1-17/+4
Change-Id: I23659102feccaa5bf97194e052a6b28cd1e7705f Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
2017-04-13Remove boxed types in MavenLikeVersioningGary Wu1-27/+17
Remove the unnecessary use of boxed types in MavenLikeVersioning. Change-Id: I8b96db9e753f80860b95b84473bb8d2b61e2328e Signed-off-by: Gary Wu <gary.i.wu@huawei.com>