Added oparent to sdc main
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-software-product-lib / openecomp-sdc-vendor-software-product-api / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / types / composition / VmSizing.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.vendorsoftwareproduct.types.composition;
22
23 public class VmSizing {
24   private int numOfCPUs;
25   private int fileSystemSizeGB;
26   private int persistentStorageVolumeSize;
27   private int ioOperationsPerSec;
28   private String cpuOverSubscriptionRatio;
29   private String memoryRAM;
30
31   public int getNumOfCPUs() {
32     return numOfCPUs;
33   }
34
35   public void setNumOfCPUs(int numOfCPUs) {
36     this.numOfCPUs = numOfCPUs;
37   }
38
39   public int getFileSystemSizeGB() {
40     return fileSystemSizeGB;
41   }
42
43   public void setFileSystemSizeGB(int fileSystemSizeGB) {
44     this.fileSystemSizeGB = fileSystemSizeGB;
45   }
46
47   public int getPersistentStorageVolumeSize() {
48     return persistentStorageVolumeSize;
49   }
50
51   public void setPersistentStorageVolumeSize(int persistentStorageVolumeSize) {
52     this.persistentStorageVolumeSize = persistentStorageVolumeSize;
53   }
54
55   public int getIoOperationsPerSec() {
56     return ioOperationsPerSec;
57   }
58
59   public void setIoOperationsPerSec(int ioOperationsPerSec) {
60     this.ioOperationsPerSec = ioOperationsPerSec;
61   }
62
63   public String getCpuOverSubscriptionRatio() {
64     return cpuOverSubscriptionRatio;
65   }
66
67   public void setCpuOverSubscriptionRatio(String cpuOverSubscriptionRatio) {
68     this.cpuOverSubscriptionRatio = cpuOverSubscriptionRatio;
69   }
70
71   public String getMemoryRAM() {
72     return memoryRAM;
73   }
74
75   public void setMemoryRAM(String memoryRAM) {
76     this.memoryRAM = memoryRAM;
77   }
78 }