diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-07-24 12:38:24 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@ericsson.com> | 2018-07-25 15:58:53 +0100 |
commit | 32c6ed6b8cc4ba7b884508b68e376621fb763f65 (patch) | |
tree | 48d9a4705cd97a5b42163f6a6d655a9b38afad45 /pom.xml | |
parent | b40acf2d244058c162a8597968e59f2708e6abf4 (diff) |
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 <liam.fallon@ericsson.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -71,15 +71,14 @@ <!-- Project common dependency versions --> <javax.persistence.api.version>1.0.2</javax.persistence.api.version> <h2.version>1.4.186</h2.version> - </properties> - <modules> <module>capabilities</module> <module>utils-test</module> <module>utils</module> <module>common-logging</module> + <module>common-parameters</module> <module>integrity-audit</module> <module>integrity-monitor</module> <module>policy-endpoints</module> |