POMBA Context Aggregator 57/56557/10
authorPrudence Au <prudence.au@amdocs.com>
Tue, 17 Jul 2018 02:02:04 +0000 (22:02 -0400)
committerPrudence Au <prudence.au@amdocs.com>
Tue, 7 Aug 2018 14:19:39 +0000 (10:19 -0400)
commit65c5d8b92e759ec4ee9d13f048b069033b4bf097
tree237dd5c8d59d5696ae9813ecaac7dfb453a9f0ca
parent4267a59d4454d03a900f46d71e288d6590f162c0
POMBA Context Aggregator

Change-Id: I33acc1f46d35447b63e2d5438c9ce6728a2b03eb
Issue-ID: LOG-519
Signed-off-by: Prudence Au <prudence.au@amdocs.com>
POMBA Context Aggregator with JUnit tests

Change-Id: I33acc1f46d35447b63e2d5438c9ce6728a2b03eb
Issue-ID: LOG-519
Signed-off-by: Prudence Au <prudence.au@amdocs.com>
40 files changed:
.gitignore [new file with mode: 0644]
.gitreview [new file with mode: 0644]
config/application.properties [new file with mode: 0644]
config/builders/aai.properties [new file with mode: 0644]
config/builders/sdc.properties [new file with mode: 0644]
config/builders/sdnc.properties [new file with mode: 0644]
config/logback.xml [new file with mode: 0644]
pom.xml [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/Application.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/builder/ContextBuilder.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/config/BuilderConfigLoader.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/config/EventConfig.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/config/EventHeaderConfig.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/config/TransportConfig.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/datatypes/AggregatedModels.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/datatypes/POAEvent.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/exception/ContextAggregatorError.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/exception/ContextAggregatorException.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/publisher/EventPublisherFactory.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/rest/RestRequest.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/service/ContextAggregatorProcessor.java [new file with mode: 0644]
src/main/java/org/onap/pomba/contextaggregator/service/ContextAggregatorService.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregaotr/config/TestTransportConfig.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/ApplicationTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/builder/ContextBuilderTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/config/BuilderConfigLoaderTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/config/EventConfigTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/config/EventHeaderConfigTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/config/TransportConfigTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/datatypes/AggregatedModelsTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/datatypes/POAEventTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/exception/ContextAggregatorErrorTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/publisher/EventPublisherFactoryTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/rest/RestRequestTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/service/ContextAggregatorProcessorTest.java [new file with mode: 0644]
src/test/java/org/onap/pomba/contextaggregator/service/ContextAggregatorServiceTest.java [new file with mode: 0644]
src/test/resources/GoodProperties/aai.properties [new file with mode: 0644]
src/test/resources/GoodProperties/sdc.properties [new file with mode: 0644]
src/test/resources/GoodProperties/sdnc.properties [new file with mode: 0644]
version.properties [new file with mode: 0644]