diff options
author | liamfallon <liam.fallon@est.tech> | 2019-02-26 13:57:39 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-02-28 10:32:01 +0000 |
commit | f240fda5e8f7e940d6033b204c2dac48a9dc7c4e (patch) | |
tree | 98f16f96a2ef8ced0895ae1aaa09c021a96f15f0 /models-dao/pom.xml | |
parent | 9ddbc872354eb5399bab9d9c23188b4be98d7dd7 (diff) |
Add basic model object concepts
This review introduces the basic concepts that all model objects
inherit from. Using this approach, all concepts that inherit from
these types can use standardized DAO handling and marrshal/unmarshal
handling
This approach is a more generic version of the approach used in the
APEX PDP for model handling. The APEX model handling will inherit this
module.
Issue-ID: POLICY-1264
Change-Id: I35b76659ab66cf3f33bee59a5528e49c7edf7796
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'models-dao/pom.xml')
-rw-r--r-- | models-dao/pom.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/models-dao/pom.xml b/models-dao/pom.xml new file mode 100644 index 000000000..90b98015d --- /dev/null +++ b/models-dao/pom.xml @@ -0,0 +1,33 @@ +<!-- + ============LICENSE_START======================================================= + Copyright (C) 2019 Nordix Foundation. + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + + SPDX-License-Identifier: Apache-2.0 + ============LICENSE_END========================================================= +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.onap.policy.models</groupId> + <artifactId>policy-models</artifactId> + <version>2.0.0-SNAPSHOT</version> + </parent> + + <artifactId>policy-models-dao</artifactId> + <name>${project.artifactId}</name> + <description>[${project.parent.artifactId}] module provides common DAO (Data Access Object) model handling for the ONAP Policy Framework</description> +</project> |