summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/cps/ncmp/dmi/service/model/ModuleReference.java
diff options
context:
space:
mode:
authorNiamh Core <niamh.core@est.tech>2021-10-05 08:35:06 +0000
committerGerrit Code Review <gerrit@onap.org>2021-10-05 08:35:06 +0000
commit9ee0feb24f8f75ce05cf9e34e4621cf2b226657e (patch)
tree29a5f24bad9c5251ede2355deaf138c1f8cad5f5 /src/main/java/org/onap/cps/ncmp/dmi/service/model/ModuleReference.java
parentb95f49172c6909a6b0dddc31ac99dd22d5189de0 (diff)
parent4cbd60b974fa68cab8501e9f3e9edef134eac09b (diff)
Merge "Fix issues with SOnar Qube coverage report"
Diffstat (limited to 'src/main/java/org/onap/cps/ncmp/dmi/service/model/ModuleReference.java')
-rw-r--r--src/main/java/org/onap/cps/ncmp/dmi/service/model/ModuleReference.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/main/java/org/onap/cps/ncmp/dmi/service/model/ModuleReference.java b/src/main/java/org/onap/cps/ncmp/dmi/service/model/ModuleReference.java
new file mode 100644
index 00000000..75c37dff
--- /dev/null
+++ b/src/main/java/org/onap/cps/ncmp/dmi/service/model/ModuleReference.java
@@ -0,0 +1,37 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2021 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=========================================================
+ */
+
+package org.onap.cps.ncmp.dmi.service.model;
+
+import lombok.EqualsAndHashCode;
+import lombok.Getter;
+import lombok.Setter;
+
+/**
+ * Module Reference.
+ */
+@Getter
+@Setter
+@EqualsAndHashCode
+public class ModuleReference {
+
+ private String name;
+ private String revision;
+}