Add initial sources 85/38585/2
authorMatthieuGeerebaert <matthieu.geerebaert@orange.com>
Mon, 26 Mar 2018 15:08:28 +0000 (17:08 +0200)
committerMatthieuGeerebaert <matthieu.geerebaert@orange.com>
Tue, 27 Mar 2018 15:56:13 +0000 (17:56 +0200)
commit25da75eacf48856824dd4e89b7ebd0da68fdef8a
tree5812664a19c4630cfc63e323901eddfa59d7f76e
parent4b0d6728a146317a091b3e8b831e48bbd3fc9136
Add initial sources

- Springboot application
- Apache license 2.0
- Healthcheck

Change-Id: I0dedfbe3348195f7be00ec8d27fbf25dfcda52b0
Issue-ID: EXTAPI-36
Signed-off-by: MatthieuGeerebaert <matthieu.geerebaert@orange.com>
20 files changed:
.gitignore [new file with mode: 0644]
LICENSE.txt [new file with mode: 0644]
README.md [new file with mode: 0644]
pom.xml [new file with mode: 0644]
src/main/java/org/onap/nbi/Application.java [new file with mode: 0644]
src/main/java/org/onap/nbi/apis/status/StatusResource.java [new file with mode: 0644]
src/main/java/org/onap/nbi/apis/status/StatusService.java [new file with mode: 0644]
src/main/java/org/onap/nbi/apis/status/StatusServiceImpl.java [new file with mode: 0644]
src/main/java/org/onap/nbi/apis/status/model/ApplicationStatus.java [new file with mode: 0644]
src/main/java/org/onap/nbi/apis/status/model/StatusType.java [new file with mode: 0644]
src/main/java/org/onap/nbi/commons/BeanUtils.java [new file with mode: 0644]
src/main/java/org/onap/nbi/commons/JacksonFilter.java [new file with mode: 0644]
src/main/java/org/onap/nbi/commons/JsonRepresentation.java [new file with mode: 0644]
src/main/java/org/onap/nbi/commons/Query.java [new file with mode: 0644]
src/main/java/org/onap/nbi/commons/QueryParserUtils.java [new file with mode: 0644]
src/main/java/org/onap/nbi/commons/ReservedKeys.java [new file with mode: 0644]
src/main/java/org/onap/nbi/commons/Resource.java [new file with mode: 0644]
src/main/java/org/onap/nbi/commons/ResourceManagement.java [new file with mode: 0644]
src/main/resources/application.properties [new file with mode: 0644]
src/test/java/org/onap/nbi/apis/status/StatusTest.java [new file with mode: 0644]