From 32c6ed6b8cc4ba7b884508b68e376621fb763f65 Mon Sep 17 00:00:00 2001 From: liamfallon Date: Tue, 24 Jul 2018 12:38:24 +0100 Subject: Add common parameter handling This common module is proposed to handle all parameters and properties for the ONAP Policy Framework in a common way. Parameters and Properties: - are validated once when they are loaded and need not be checked again in classes that use them - are available for lookup in a parameter service, they need not be passed in constructors and method arguments - are input using a single implementiation of input method only (JSON/YAML/Java properties/REST) - are defined in a schema and the schema is used for validation as much as possible Issue-ID: POLICY-922 Change-Id: I1fac88b9e952b6b5fcbea04319cb4294a9653327 Signed-off-by: liamfallon --- common-parameters/pom.xml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 common-parameters/pom.xml (limited to 'common-parameters/pom.xml') diff --git a/common-parameters/pom.xml b/common-parameters/pom.xml new file mode 100644 index 00000000..828a0845 --- /dev/null +++ b/common-parameters/pom.xml @@ -0,0 +1,40 @@ + + + 4.0.0 + + org.onap.policy.common + common-modules + 1.3.0-SNAPSHOT + + + common-parameters + ${project.artifactId} + [${project.parent.artifactId}] module provides common property and parameter handling the ONAP Policy Framework + + + + junit + junit + test + + + -- cgit 1.2.3-korg