Change code in appc dispatcher for new LCMs in R6
[appc.git] / appc-inbound / appc-design-services / provider / src / main / java / org / onap / appc / design / data / DesignResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.appc.design.data;
24
25 import java.util.List;
26 import com.fasterxml.jackson.annotation.JsonProperty;
27
28 public class DesignResponse{
29
30     @JsonProperty("userID")
31     String userId;
32
33     @JsonProperty("designInfo")
34     List<DesignInfo> designInfoList;
35
36     @JsonProperty("statusInfo")
37     List<StatusInfo> statusInfoList;
38
39     @JsonProperty("artifactInfo")
40     List<ArtifactInfo> artifactInfo;
41
42     @JsonProperty("vnf-type")
43     String vnfType;
44
45     @JsonProperty("users")
46     List<UserPermissionInfo> users;
47
48     public List<ArtifactInfo> getArtifactInfo() {
49         return artifactInfo;
50     }
51
52     public void setArtifactInfo(List<ArtifactInfo> artifactInfo) {
53         this.artifactInfo = artifactInfo;
54     }
55
56     public String getUserId() {
57         return userId;
58     }
59
60     public void setUserId(String userId) {
61         this.userId = userId;
62     }
63
64     public List<DesignInfo> getDesignInfoList() {
65         return designInfoList;
66     }
67
68     public void setDesignInfoList(List<DesignInfo> designInfoList) {
69         this.designInfoList = designInfoList;
70     }
71
72     public List<StatusInfo> getStatusInfoList() {
73         return statusInfoList;
74     }
75
76     public void setStatusInfoList(List<StatusInfo> statusInfoList) {
77         this.statusInfoList = statusInfoList;
78     }
79
80     public String getVnfType() {
81         return vnfType;
82     }
83
84     public void setVnfType(String vnfType) {
85         this.vnfType = vnfType;
86     }
87
88     public List<UserPermissionInfo> getUsers() {
89         return users;
90     }
91
92     public void setUsers(List<UserPermissionInfo> userPermInfoList) {
93         this.users = userPermInfoList;
94     }
95
96 }