0129fe0981e778b370be216adc1876cc2e377252
[sdc.git] /
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
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
17 package org.openecomp.sdc.vendorsoftwareproduct.types.questionnaire.component.general;
18
19 /**
20  * Created by TALIO on 11/22/2016.
21  */
22 public class General {
23     private Hypervisor hypervisor;
24     private Image image;
25     protected Recovery recovery;
26     private String dnsConfiguration;
27     private String vmCloneUsage;
28     private String nfcNamingCode;
29     private String nfcFunction;
30
31     public Hypervisor getHypervisor() {
32         return hypervisor;
33     }
34
35     public void setHypervisor(Hypervisor hypervisor) {
36         this.hypervisor = hypervisor;
37     }
38
39     public Image getImage() {
40         return image;
41     }
42
43     public void setImage(Image image) {
44         this.image = image;
45     }
46
47     public Recovery getRecovery() {
48         return recovery;
49     }
50
51     public void setRecovery(Recovery recovery) {
52         this.recovery = recovery;
53     }
54
55     public String getDnsConfiguration() {
56         return dnsConfiguration;
57     }
58
59     public void setDnsConfiguration(String dnsConfiguration) {
60         this.dnsConfiguration = dnsConfiguration;
61     }
62
63     public String getVmCloneUsage() {
64         return vmCloneUsage;
65     }
66
67     public void setVmCloneUsage(String vmCloneUsage) {
68         this.vmCloneUsage = vmCloneUsage;
69     }
70
71     public String getNfcNamingCode() {
72         return nfcNamingCode;
73     }
74
75     public void setNfcNamingCode(String nfcNamingCode) {
76         this.nfcNamingCode = nfcNamingCode;
77     }
78
79     public String getNfcFunction() {
80         return nfcFunction;
81     }
82
83     public void setNfcFunction(String nfcFunction) {
84         this.nfcFunction = nfcFunction;
85     }
86 }