summaryrefslogtreecommitdiffstats
path: root/ccsdk-app-overlay
AgeCommit message (Collapse)AuthorFilesLines
2021-03-23Release ccsdk/dashboard1.4.2jenkins-releng1-2/+2
2021-03-22[CCSDK/DCAE] Fix dashboard app errorvv770d1-2/+2
recent version upgrades for spring-web and jackson is causing application to not start reverting com.fasterxml.jackson.core : jackson-databind : 2.9.8 org.springframework : spring-web : 4.3.22.RELEASE Change-Id: If88b8744574b889879d8fafe43ea51598a089310 Signed-off-by: vv770d <vv770d@att.com> Issue-ID: CCSDK-3233 Signed-off-by: vv770d <vv770d@att.com>
2020-09-30Update third party dependenciesDan Timoney1-5/+5
Updated the following dependencies based on guidance from SECCOM: com.fasterxml.jackson.core : jackson-databind : 2.9.8 -> 2.11.0 org.springframework : spring-web : 4.3.22.RELEASE -> 5.2.7.RELEASE org.springframework : spring-webmvc : 4.3.22.RELEASE -> 5.2.7.RELEASE com.mchange : c3p0 : 0.9.5.3 -> 0.9.5.5 Also, updated jsp tag library from javax.servlet:jstl:1.2 to org.glassfish.web:javax.servlet.jsp.jstl:1.2.5 to remediate vulnerability. Change-Id: I48c5bc6944eab469c120b7aae8876721b989f443 Issue-ID: CCSDK-2855 Signed-off-by: Dan Timoney <dtimoney@att.com>
2020-08-31fix issue with deploying server TLS certificatesKotagiri, Ramprasad (rp5662)1-8/+8
Issue-ID: DCAEGEN2-2298 Change-Id: I45cb6684902f7eedfb84a390717bdfb3dd51f746 Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
2020-08-21java 11 upgrade and sonar scan fixesKotagiri, Ramprasad (rp5662)6-51/+253
Recompile java source code using jdk11 Run in ojdk11 JRE tomcat container upgrade alpine base image Issue-ID: DCAEGEN2-2298 Change-Id: Ic4bf2626e5805508589cafe52b7c4e91d7ae3580 Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
2020-08-12CCSDK DCAE dashboard feature changesKotagiri, Ramprasad (rp5662)50-6984/+9216
Issue-ID: DCAEGEN2-1857 Issue-ID: DCAEGEN2-2074 Issue-ID: DCAEGEN2-2364 Change-Id: I97f5ec4599512ed848136971b11d4c2a137a4999 Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
2020-03-11[DCAEGEN2-2139] tomcat server config for https connector1.3.2Kotagiri, Ramprasad (rp5662)1-2/+2
escape XML special characters for XML element attributes Issue-ID: DCAEGEN2-2139 Change-Id: Id332a8f45ad1df59793a282383a0486e512a0939 Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
2020-03-02skip blueprint parsing exceptions for invalid YAMLKotagiri, Ramprasad (rp5662)1-2/+2
Allow blueprint records to be displayed by skipping records with invalid YAML. Issue-ID: DCAEGEN2-2120 Change-Id: I025bfc27e175683005400ab094c8a430191f56f4 Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
2020-02-18DCAE dashboard updates ver 1.3.0Kotagiri, Ramprasad (rp5662)7-36/+11
Update DB Schema to include new menu items for API doc Update the page footer for latest copyright Issue-ID: DCAEGEN2-1856 Issue-ID: DCAEGEN2-1556 Change-Id: Ia7f52b6f0151db62f2155fa26d0f50a1157e7481 Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
2020-02-06DCAE dashboard security fixesKotagiri, Ramprasad (rp5662)12-52/+216
Portal SDK ver 2.6.0, non-root user for docker container Change label on Dashboard Home page, API changes, Container optimization Change-Id: Ie2c8efd76d34fddc2b182d5ed494761522695914 Issue-ID: DCAEGEN2-1638 Issue-ID: CCSDK-1485 Issue-ID: DCAEGEN2-1921 Issue-ID: DCAEGEN2-1915 Issue-ID: DCAEGEN2-1856 Issue-ID: DCAEGEN2-1556 Issue-ID: DCAEGEN2-1592 Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
2019-08-05Major- Replace comparison Operatorsanushadasari1-4/+4
The == and != operators do type coercion before comparing values. This is bad because it can mask type errors. For example, it evaluates ' \t\r\n' == 0 as true. It is best to always use the side-effect-less === and !== operators instead. Issue-ID: CCSDK-1583 Change-Id: I202ada53b472542261ee69623ea72b52005fdfab Signed-off-by: anushadasari <danush10@in.ibm.com>
2019-08-05Sonar- blueprint-controllers.jsanushadasari1-4/+2
Add a semicolon at the end of this statement. Remove the useless trailing whitespaces at the end of this line. Change-Id: Iae0434b07bcc713794164079f626e781e1de844d Issue-ID: CCSDK-1582 Signed-off-by: anushadasari <danush10@in.ibm.com>
2019-07-30Major- Remove unused function parameter "response"anushadasari1-1/+1
Unused parameters are misleading. Whatever the values passed to such parameters,the behavior will be the same. Issue-ID: CCSDK-1555 Change-Id: I5a90b7650c7291ca5d4d64943570f72c44b96c08 Signed-off-by: anushadasari <danush10@in.ibm.com>
2019-07-25SonarFix- Removing Whitespacesanushadasari1-1/+0
Trailing whitespaces are simply useless and should not stay in code. They may generate noise when comparing different versions of the same file. Issue-ID: CCSDK-1516 Change-Id: Ic84d3682bb4c72062a9c33632e07760e76dcaf5f Signed-off-by: anushadasari <danush10@in.ibm.com>
2019-07-25sonar fix- Add a semicolon at the end of this statement.anushadasari1-1/+1
In JavaScript, the semicolon (;) is optional as a statement separator, but omitting semicolons can be confusing, and lead to unexpected results because a semicolon is implicitly inserted at the end of each line. Issue-ID: CCSDK-1515 Change-Id: I64e50083b9b0fe40fa0ba32723e30adb0dbce08e Signed-off-by: anushadasari <danush10@in.ibm.com>
2019-05-29Roll to El Alto versionTimoney, Dan (dt5972)1-2/+2
Roll to El Alto version (1.2.0-SNAPSHOT) Change-Id: If6ed958ab362ef8919f8e590a54f02f8639aaa0c Issue-ID: CCSDK-1362 Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
2019-05-17Update POM files to allow maven deploy processKotagiri, Ramprasad (rp5662)1-9/+0
Remove instruction in POM files that was skipping mvn deploy step. Build artifacts are allowed to be deployed in deploy phase. Issue-ID: CCSDK-1011 Change-Id: Ibe924291607ada34ac60f912fe377df6ea4bd2cd Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
2019-04-15update ca certs trust storeKotagiri, Ramprasad (rp5662)1-1/+1
Update docker container script to update DCAE ca cert Fix the page title on the landing page Issue-ID: CCSDK-1011 Change-Id: I7e09b43d5cd6e25b242dfdd2c6c1c0819013e1fc Signed-off-by: Kotagiri, Ramprasad (rp5662) <rp5662@att.com>
2019-03-28Docker container implementationKotagiri, Ramprasad (rp5662)5-7031/+3
This change contains following items: 1) Update b2b-library.js to remove non-compliant code 2) Format source code for ccsdk-app-os module 3) Add Dockerfile and artifacts to create docker container 4) Update POM files for docker maven plugin and version changes Issue-ID: CCSDK-1011 Change-Id: Iae93b32e1d8c2e7b911b044bc07bba6b720742a5 Signed-off-by: ramprasad kotagiri <rp5662@att.com>
2019-03-21Java unit test codeKotagiri, Ramprasad (rp5662)16-641/+238
This change contains the following: 1) Added Junit classes for java unit testing and code coverage 2) Refactored code to use Spring autowiring of service class instances 3) Updated icons to match the available font icons library 4) Added back ccsdk-app-os module in the parent POM Change-Id: I545202357eb1c8257ee29e0f5a02aa37991b2673 Issue-ID: CCSDK-1011 Signed-off-by: ramprasad kotagiri <rp5662@att.com>
2019-03-15Resolve security issuesTimoney, Dan (dt5972)2-0/+28
This change contains the following fixes: 1) Updated ccsdk/dashboard to use ONAP's oparent parent pom 2) Removed <version> tag from dependencies managed by oparent, where feasible (e.g. not spring, since oparent uses Spring 5 and dashboard is based on Spring 4) 3) Updated versions of third party libraries as needed to address vulnerabilities found in nexus IQ scan. 4) Added missing license headers in source files to resolve checkstyle error from oparent. 5) Fixed indentation (tab -> 4 spaces) to resolve oparent checkstyle warning. Change-Id: Ib92d5ef86dbdb78c270d0901cc0753cd5a78eb6e Issue-ID: CCSDK-1167 Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
2019-03-13Latest code baseramprasad kotagiri41-755/+45055
Change-Id: I9549091ebeeabcef2d7af7d91cc394d8371e496b Issue-ID: CCSDK-1011 Signed-off-by: ramprasad kotagiri <rp5662@att.com>
2018-03-07Fix dashboard repo issueHong Guan1-392/+392
Change-Id: I264bc0ec06bc308816bd96982efdfef28264978c Issue-ID: CCSDK-196 Signed-off-by: Hong Guan <hg4105@att.com>
2017-10-06Refactor CCSDK/Dashboard project: Add git filesNicolas Hu1-0/+7
Change-Id: I92b6ccb444adf6ce38eb42ae3cce11bdab380ffa Issues-Id: CCSDK-111 Signed-off-by: Nicolas Hu <jh245g@att.com>
2017-10-06Refactor CCSDK/Dashboard projectNicolas Hu60-0/+7618
Change-Id: I34451fbebbe7bbaaf1cd23aed5cef0f9a9ba37b7 Issues-Id: CCSDK-111 Signed-off-by: Nicolas Hu <jh245g@att.com>