05f43ce76b8a25d3d9656bc4e181fe64b7c684c9
[sdc.git] /
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  * Modifications copyright (c) 2019 Nokia
20  * ================================================================================
21  */
22
23 package org.openecomp.sdc.generator.datatypes.tosca;
24
25 import java.util.List;
26 import java.util.Map;
27 import lombok.EqualsAndHashCode;
28 import lombok.Getter;
29 import lombok.NoArgsConstructor;
30 import lombok.Setter;
31 import lombok.ToString;
32 import org.openecomp.sdc.vendorsoftwareproduct.types.composition.Nic;
33
34 @Getter
35 @Setter
36 @ToString
37 @EqualsAndHashCode
38 @NoArgsConstructor
39 public class VspModelInfo {
40
41     private String releaseVendor;
42     //Map of component id and name
43     private Map<String, String> components;
44     //Map of part number and deployment flavor model
45     private Map<String, DeploymentFlavorModel> allowedFlavors;
46     //Map of component id and images
47     private Map<String, List<MultiFlavorVfcImage>> multiFlavorVfcImages;
48     //Map of component and ports (NICs)
49     private Map<String, List<Nic>> nics;
50
51 }