761f54b0621df675c078d9e15282a850cb090276
[vfc/nfvo/driver/vnfm/svnfm.git] /
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
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
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16 package com.nokia.vfcadaptor.catalog.bo;
17
18 import java.util.List;
19
20 import com.fasterxml.jackson.annotation.JsonProperty;
21 import com.nokia.vfcadaptor.catalog.bo.entity.ImageInfo;
22 import com.nokia.vfcadaptor.catalog.bo.entity.VnfInstanceInfo;
23 import com.nokia.vfcadaptor.nslcm.bo.entity.VnfPackageInfo;
24
25 public class CatalogQueryVnfResponse {
26         @JsonProperty("csarId")
27         private String csarId;
28         
29         @JsonProperty("packageInfo")
30         private VnfPackageInfo packageInfo;
31         
32         @JsonProperty("imageInfo")
33         private List<ImageInfo> imageInfo;
34         
35         @JsonProperty("vnfInstanceInfo")
36         private List<VnfInstanceInfo> vnfInstanceInfo;
37
38         public String getCsarId() {
39                 return csarId;
40         }
41
42         public void setCsarId(String csarId) {
43                 this.csarId = csarId;
44         }
45
46         
47
48         public VnfPackageInfo getPackageInfo() {
49                 return packageInfo;
50         }
51
52         public void setPackageInfo(VnfPackageInfo packageInfo) {
53                 this.packageInfo = packageInfo;
54         }
55
56         public List<ImageInfo> getImageInfo() {
57                 return imageInfo;
58         }
59
60         public void setImageInfo(List<ImageInfo> imageInfo) {
61                 this.imageInfo = imageInfo;
62         }
63
64         public List<VnfInstanceInfo> getVnfInstanceInfo() {
65                 return vnfInstanceInfo;
66         }
67
68         public void setVnfInstanceInfo(List<VnfInstanceInfo> vnfInstanceInfo) {
69                 this.vnfInstanceInfo = vnfInstanceInfo;
70         }
71
72
73         
74         
75         
76         
77         
78 }