2 * Copyright © 2016-2018 European Support Limited
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
8 * 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.
17 package org.openecomp.sdc.vendorsoftwareproduct.types.questionnaire.component.general;
20 * Created by TALIO on 11/22/2016.
22 public class General {
23 private Hypervisor hypervisor;
25 protected Recovery recovery;
26 private String dnsConfiguration;
27 private String vmCloneUsage;
28 private String nfcNamingCode;
29 private String nfcFunction;
31 public Hypervisor getHypervisor() {
35 public void setHypervisor(Hypervisor hypervisor) {
36 this.hypervisor = hypervisor;
39 public Image getImage() {
43 public void setImage(Image image) {
47 public Recovery getRecovery() {
51 public void setRecovery(Recovery recovery) {
52 this.recovery = recovery;
55 public String getDnsConfiguration() {
56 return dnsConfiguration;
59 public void setDnsConfiguration(String dnsConfiguration) {
60 this.dnsConfiguration = dnsConfiguration;
63 public String getVmCloneUsage() {
67 public void setVmCloneUsage(String vmCloneUsage) {
68 this.vmCloneUsage = vmCloneUsage;
71 public String getNfcNamingCode() {
75 public void setNfcNamingCode(String nfcNamingCode) {
76 this.nfcNamingCode = nfcNamingCode;
79 public String getNfcFunction() {
83 public void setNfcFunction(String nfcFunction) {
84 this.nfcFunction = nfcFunction;