[SDC] Onboarding 1710 rebase.
[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 / Component.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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 import java.util.List;
24
25 public class Component {
26   private ComponentData data;
27   private List<Nic> nics;
28   private List<Image> images;
29   private List<ComputeData> compute;
30
31   public ComponentData getData() {
32     return data;
33   }
34
35   public void setData(ComponentData data) {
36     this.data = data;
37   }
38
39   public List<Nic> getNics() {
40     return nics;
41   }
42
43   public void setNics(List<Nic> nics) {
44     this.nics = nics;
45   }
46
47   public List<Image> getImages() {
48     return images;
49   }
50
51   public void setImages(List<Image> images) {
52     this.images = images;
53   }
54
55   public List<ComputeData> getCompute() {
56     return compute;
57   }
58
59   public void setCompute(
60       List<ComputeData> compute) {
61     this.compute = compute;
62   }
63 }