summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/questionnaire/component/compute/VmSizing.java
diff options
context:
space:
mode:
Diffstat (limited to 'openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/questionnaire/component/compute/VmSizing.java')
-rw-r--r--openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/questionnaire/component/compute/VmSizing.java59
1 files changed, 10 insertions, 49 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/questionnaire/component/compute/VmSizing.java b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/questionnaire/component/compute/VmSizing.java
index a6a8b406cf..0f72d03d10 100644
--- a/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/questionnaire/component/compute/VmSizing.java
+++ b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-api/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/types/questionnaire/component/compute/VmSizing.java
@@ -7,9 +7,9 @@
* 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.
@@ -20,7 +20,15 @@
package org.openecomp.sdc.vendorsoftwareproduct.types.questionnaire.component.compute;
+import lombok.Getter;
+import lombok.NoArgsConstructor;
+import lombok.Setter;
+
+@Getter
+@Setter
+@NoArgsConstructor
public class VmSizing {
+
private int numOfCPUs;
private String fileSystemSizeGB;
private Number persistentStorageVolumeSize;
@@ -28,51 +36,4 @@ public class VmSizing {
private String cpuOverSubscriptionRatio;
private String memoryRAM;
- public int getNumOfCPUs() {
- return numOfCPUs;
- }
-
- public void setNumOfCPUs(int numOfCPUs) {
- this.numOfCPUs = numOfCPUs;
- }
-
- public String getFileSystemSizeGB() {
- return fileSystemSizeGB;
- }
-
- public void setFileSystemSizeGB(String fileSystemSizeGB) {
- this.fileSystemSizeGB = fileSystemSizeGB;
- }
-
- public Number getPersistentStorageVolumeSize() {
- return persistentStorageVolumeSize;
- }
-
- public void setPersistentStorageVolumeSize(Number persistentStorageVolumeSize) {
- this.persistentStorageVolumeSize = persistentStorageVolumeSize;
- }
-
- public Number getIOOperationsPerSec() {
- return IOOperationsPerSec;
- }
-
- public void setIOOperationsPerSec(Number IOOperationsPerSec) {
- this.IOOperationsPerSec = IOOperationsPerSec;
- }
-
- public String getCpuOverSubscriptionRatio() {
- return cpuOverSubscriptionRatio;
- }
-
- public void setCpuOverSubscriptionRatio(String cpuOverSubscriptionRatio) {
- this.cpuOverSubscriptionRatio = cpuOverSubscriptionRatio;
- }
-
- public String getMemoryRAM() {
- return memoryRAM;
- }
-
- public void setMemoryRAM(String memoryRAM) {
- this.memoryRAM = memoryRAM;
- }
}