Decouple policy-common from clamp 36/142636/2
authordanielhanrahan <daniel.hanrahan@est.tech>
Wed, 3 Dec 2025 02:35:13 +0000 (02:35 +0000)
committerdanielhanrahan <daniel.hanrahan@est.tech>
Thu, 4 Dec 2025 18:53:24 +0000 (18:53 +0000)
commit638c82eb05843bd145651d6cba3564c9f517755d
tree055d1d498ec8c40f819ab6677fcbe257acca11ed
parent8bc542fda27b36a3b71f99accf0956be47c5a154
Decouple policy-common from clamp

- Copy used files from policy/common repo into clamp repo
- Copy unit tests of those files
- Update POMs to use the new internal policy-common module

Issue-ID: POLICY-5494
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: Ia58a1c56b72518adc09a19a81968f8091142f042
278 files changed:
common/pom.xml
models/pom.xml
participant/participant-intermediary/pom.xml
policy-common/pom.xml [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/capabilities/Lockable.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/capabilities/Startable.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/endpoints/listeners/JsonListener.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/endpoints/listeners/MessageTypeDispatcher.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/endpoints/listeners/ScoListener.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/DoubleConverter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/GsonMessageBodyHandler.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/InstantAsMillisTypeAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/InstantTypeAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/JacksonExclusionStrategy.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/JacksonFieldAdapterFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/JacksonHandler.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/JacksonMethodAdapterFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/LocalDateTimeTypeAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/LocalDateTypeAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/MapDoubleAdapterFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/OffsetDateTimeTypeAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/OffsetTimeTypeAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/StringTypeAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/ZoneOffsetTypeAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/ZonedDateTimeTypeAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/annotation/GsonJsonAnyGetter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/annotation/GsonJsonAnySetter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/annotation/GsonJsonIgnore.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/annotation/GsonJsonProperty.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/Adapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/AnyGetterSerializer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/AnySetterDeserializer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/ClassWalker.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/Deserializer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/FieldDeserializer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/FieldSerializer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/JacksonTypeAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/Lifter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/MethodAdapter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/MethodDeserializer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/MethodSerializer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/gson/internal/Serializer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/Topic.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/TopicEndpoint.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/TopicEndpointManager.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/TopicEndpointProxy.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/TopicListener.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/TopicRegisterable.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/TopicSink.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/TopicSource.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/ApiKeyEnabled.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/BusConsumer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/BusPublisher.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/BusTopicBase.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/BusTopicSink.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/BusTopicSource.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/InlineBusTopicSink.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/SingleThreadedBusTopicSource.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/TopicBase.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/TopicBaseFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/base/TopicBaseHashedFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/client/TopicSinkClient.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/client/TopicSinkClientException.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/kafka/IndexedKafkaTopicSinkFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/kafka/IndexedKafkaTopicSourceFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/kafka/InlineKafkaTopicSink.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/kafka/KafkaPublisherWrapper.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicFactories.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicSink.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicSinkFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicSource.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicSourceFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/kafka/SingleThreadedKafkaTopicSource.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/noop/NoopTopicEndpoint.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/noop/NoopTopicFactories.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/noop/NoopTopicFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/noop/NoopTopicSink.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/noop/NoopTopicSinkFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/noop/NoopTopicSource.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/event/noop/NoopTopicSourceFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/features/NetLoggerFeatureApi.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/features/NetLoggerFeatureProviders.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/healthcheck/TopicHealthCheck.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/healthcheck/TopicHealthCheckFactory.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/healthcheck/kafka/KafkaHealthCheck.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/healthcheck/noop/NoopHealthCheck.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/properties/MessageBusProperties.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/utils/KafkaPropertyUtils.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/message/bus/utils/NetLoggerUtil.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/BeanValidationResult.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/BeanValidator.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/FieldValidator.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/ItemValidator.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/ObjectValidationResult.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/ParameterConstants.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/ParameterGroup.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/ParameterGroupImpl.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/ValidationResult.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/ValidationResultImpl.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/ValidationStatus.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/ValueValidator.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/annotations/ClassName.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/annotations/Max.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/annotations/Min.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/annotations/NotBlank.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/annotations/NotNull.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/annotations/Pattern.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/annotations/Size.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/annotations/Valid.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/topic/BusTopicParams.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/topic/TopicParameterGroup.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/topic/TopicParameters.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/validation/ParameterGroupConstraint.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/parameters/validation/ParameterGroupValidator.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/spring/utils/CustomImplicitNamingStrategy.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/spring/utils/YamlHttpMessageConverter.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/coder/Coder.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/coder/CoderException.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/coder/StandardCoder.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/coder/StandardCoderObject.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/coder/StandardYamlCoder.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/coder/YamlJsonTranslator.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/gson/GsonSerializer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/gson/GsonTestUtils.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/gson/GsonTestUtilsBuilder.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/network/NetworkUtil.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/properties/PropertyUtils.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/resources/ResourceUtils.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/services/FeatureApiUtils.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/services/OrderedService.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/services/OrderedServiceImpl.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/services/ServiceManager.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/services/ServiceManagerContainer.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/services/ServiceManagerException.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/test/ConstructionError.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/test/ErrorsTester.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/test/ExceptionsTester.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/test/ThrowablesTester.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/test/ToStringTester.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/test/log/logback/ExtractAppender.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/validation/Assertions.java [new file with mode: 0644]
policy-common/src/main/java/org/onap/policy/common/utils/validation/Version.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/endpoints/listeners/JsonListenerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/endpoints/listeners/MessageTypeDispatcherTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/endpoints/listeners/ScoListenerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/DoubleConverterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/GsonMessageBodyHandlerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/InstantAsMillisTypeAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/InstantTypeAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/JacksonExclusionStrategyTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/JacksonFieldAdapterFactoryTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/JacksonHandlerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/JacksonMethodAdapterFactoryTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/LocalDateTimeTypeAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/LocalDateTypeAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/MapDoubleAdapterFactoryTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/OffsetDateTimeAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/OffsetTimeTypeAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/StringTypeAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/ZoneOffsetTypeAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/ZonedDateTimeTypeAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/AdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/AnyGetterSerializerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/AnySetterDeserializerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/ClassWalkerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/DataAdapterFactory.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/FieldDeserializerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/FieldSerializerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/JacksonTypeAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/LifterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/MethodAdapterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/MethodDeserializerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/gson/internal/MethodSerializerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/CommonTestData.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/TopicEndpointProxyTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/TopicParameterGroupTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/base/BusConsumerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/base/BusTopicBaseTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/base/BusTopicFactoryTestBase.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/base/InlineBusTopicSinkTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/base/SingleThreadedBusTopicSourceTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/base/TopicBaseTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/base/TopicFactoryTestBase.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/base/TopicPropertyBuilder.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/base/TopicTestBase.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/client/TopicClientExceptionTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/client/TopicSinkClientTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/kafka/IndexedKafkaTopicSourceFactoryTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/kafka/InlineKafkaTopicSinkTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/kafka/KafkaPublisherWrapperTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicFactoryTestBase.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicPropertyBuilder.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicSinkFactoryTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicSinkTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicSourceFactoryTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/kafka/KafkaTopicSourceTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/kafka/SingleThreadedKafkaTopicSourceTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/noop/NoopTopicEndpointTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/noop/NoopTopicFactoryTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/noop/NoopTopicPropertyBuilder.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/noop/NoopTopicSinkFactoryTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/noop/NoopTopicSinkTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/noop/NoopTopicSourceFactoryTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/event/noop/NoopTopicSourceTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/features/NetLoggerFeatureApiTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/healthcheck/TopicHealthCheckFactoryTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/healthcheck/kafka/KafkaHealthCheckTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/healthcheck/noop/NoopHealthCheckTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/utils/KafkaPropertyUtilsTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/message/bus/utils/NetLoggerUtilTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/ParameterGroupTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/TestBeanValidationResult.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/TestBeanValidator.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/TestFieldValidator.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/TestItemValidator.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/TestObjectValidationResult.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/TestValidationResultImpl.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/TestValueValidator.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/ValidatorUtil.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/topic/BusTopicParamsTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/parameters/validation/ParameterGroupValidatorTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/spring/utils/CustomImplicitNamingStrategyTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/spring/utils/YamlHttpMessageConverterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/coder/CoderExceptionTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/coder/CoderTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/coder/StandardCoderObjectTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/coder/StandardCoderTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/coder/StandardYamlCoderTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/coder/YamlJsonTranslatorTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/gson/GsonSerializerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/gson/GsonTestUtilsBuilderTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/gson/GsonTestUtilsTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/network/NetworkUtilTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/properties/PropertyUtilsTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/resources/ResourceUtilsTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/services/FeatureApiUtilsTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/services/OrderedServiceImplTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/services/OrderedServiceTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/services/ServiceManagerContainerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/services/ServiceManagerExceptionTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/services/ServiceManagerTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/test/ConstructionErrorTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/test/ErrorsTesterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/test/ExceptionsTesterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/test/ThrowablesTesterTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/test/log/logback/ExtractAppenderTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/validation/AssertionsTest.java [new file with mode: 0644]
policy-common/src/test/java/org/onap/policy/common/utils/validation/VersionTest.java [new file with mode: 0644]
policy-common/src/test/resources/META-INF/services/org.onap.policy.common.message.bus.features.NetLoggerFeatureApi [new file with mode: 0644]
policy-common/src/test/resources/META-INF/services/org.onap.policy.common.utils.services.OrderedServiceImplTest$GenericService [new file with mode: 0644]
policy-common/src/test/resources/keystore-test [new file with mode: 0644]
policy-common/src/test/resources/logback-test.xml [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/endpoints/http/server/internal/HttpServerTest.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/endpoints/rest/RestServerParameters_invalid.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/endpoints/rest/RestServerParameters_valid.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/endpoints/rest/TopicParameters_all_params.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/endpoints/rest/TopicParameters_invalid.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/endpoints/rest/TopicParameters_missing_mandatory.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/endpoints/rest/TopicParameters_valid.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/message/bus/event/TopicEndpointProxyTest.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/message/bus/event/base/BusTopicBaseTest.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/message/bus/event/base/InlineBusTopicSinkTest.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/message/bus/event/base/SingleThreadedBusTopicSourceTest.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/message/bus/event/base/TopicBaseTest.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/message/bus/parameters/TopicParameters_all_params.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/message/bus/parameters/TopicParameters_invalid.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/message/bus/parameters/TopicParameters_missing_mandatory.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/message/bus/parameters/TopicParameters_valid.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/utils/coder/StandardCoder.json [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/utils/coder/YamlJsonTranslator.yaml [new file with mode: 0644]
policy-common/src/test/resources/org/onap/policy/common/utils/gson/GsonTestUtilsTest.json [new file with mode: 0644]
policy-common/src/test/resources/testdir/testfile.xml [new file with mode: 0644]
policy-common/src/test/resources/version.txt [new file with mode: 0644]
policy-common/src/test/resources/webapps/alt-root/index.html [new file with mode: 0644]
policy-common/src/test/resources/webapps/root/index.html [new file with mode: 0644]
policy-models/pom.xml
pom.xml
runtime-acm/pom.xml