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 / VnfDescriptor.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.HashMap;
23 import java.util.Map;
24
25 /**
26  * Represents a Virtual Network Function Descriptor
27  */
28 public class VnfDescriptor {
29
30     private String name;
31     private String vnfdFileName;
32     private String nodeType;
33     private Map<String, byte[]> definitionFiles = new HashMap<>();
34
35     public String getName() {
36         return name;
37     }
38
39     public void setName(String name) {
40         this.name = name;
41     }
42
43     public Map<String, byte[]> getDefinitionFiles() {
44         return definitionFiles;
45     }
46
47     public void setDefinitionFiles(Map<String, byte[]> definitionFiles) {
48         this.definitionFiles = definitionFiles;
49     }
50
51     public String getVnfdFileName() {
52         return vnfdFileName;
53     }
54
55     public void setVnfdFileName(String vnfdFileName) {
56         this.vnfdFileName = vnfdFileName;
57     }
58
59     public String getNodeType() {
60         return nodeType;
61     }
62
63     public void setNodeType(String nodeType) {
64         this.nodeType = nodeType;
65     }
66
67 }