Plugin to Generate Service ETSI NSD CSAR
[sdc.git] / catalog-be-plugins / etsi-nfv-nsd-csar-plugin / src / main / java / org / openecomp / sdc / be / plugins / etsi / nfv / nsd / model / Nsd.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.openecomp.sdc.be.plugins.etsi.nfv.nsd.model;
21
22 import java.util.ArrayList;
23 import java.util.List;
24
25 /**
26  * Represents a Network Service Descriptor
27  */
28 public class Nsd {
29
30     public static final String DESIGNER_PROPERTY = "designer";
31     public static final String VERSION_PROPERTY = "version";
32     public static final String NAME_PROPERTY = "name";
33     public static final String INVARIANT_ID_PROPERTY = "invariant_id";
34
35     private String designer;
36     private String version;
37     private String name;
38     private String invariantId;
39     private byte[] contents;
40     private List<String> artifactReferences = new ArrayList<>();
41
42     public String getDesigner() {
43         return designer;
44     }
45
46     public void setDesigner(String designer) {
47         this.designer = designer;
48     }
49
50     public String getVersion() {
51         return version;
52     }
53
54     public void setVersion(String version) {
55         this.version = version;
56     }
57
58     public String getName() {
59         return name;
60     }
61
62     public void setName(String name) {
63         this.name = name;
64     }
65
66     public String getInvariantId() {
67         return invariantId;
68     }
69
70     public void setInvariantId(String invariantId) {
71         this.invariantId = invariantId;
72     }
73
74     public byte[] getContents() {
75         return contents;
76     }
77
78     public void setContents(byte[] contents) {
79         this.contents = contents;
80     }
81
82     public List<String> getArtifactReferences() {
83         return artifactReferences;
84     }
85
86     public void setArtifactReferences(List<String> artifactReferences) {
87         this.artifactReferences = artifactReferences;
88     }
89 }