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 / DesignInfo.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 com.fasterxml.jackson.annotation.JsonProperty;
26
27 public class DesignInfo{
28
29     @JsonProperty("vnf-type")
30     String vnf_type;
31
32     @JsonProperty("vnfc-type")
33     String vnfc_type;
34
35     @JsonProperty("protocol")
36     String protocol;
37
38     @JsonProperty("incart")
39     String inCart;
40
41     @JsonProperty("action")
42     String action;
43
44     @JsonProperty("artifact-name")
45     String artifact_name;
46
47     @JsonProperty("artifact-type")
48     String artifact_type;
49
50     @JsonProperty("permission")
51     String permission;
52
53     @JsonProperty("creatorUserId")
54     String creatorUserId;
55
56     public String getArtifact_type() {
57         return artifact_type;
58     }
59
60     public void setArtifact_type(String artifact_type) {
61         this.artifact_type = artifact_type;
62     }
63
64     public String getArtifact_name() {
65         return artifact_name;
66     }
67
68     public void setArtifact_name(String artifact_name) {
69         this.artifact_name = artifact_name;
70     }
71
72     public String getAction() {
73         return action;
74     }
75
76     public void setAction(String action) {
77         this.action = action;
78     }
79
80     public String getVnf_type() {
81         return vnf_type;
82     }
83
84     public void setVnf_type(String vnf_type) {
85         this.vnf_type = vnf_type;
86     }
87
88     public String getVnfc_type() {
89         return vnfc_type;
90     }
91
92     public void setVnfc_type(String vnfc_type) {
93         this.vnfc_type = vnfc_type;
94     }
95
96     public String getProtocol() {
97         return protocol;
98     }
99
100     public void setProtocol(String protocol) {
101         this.protocol = protocol;
102     }
103
104     public String getInCart() {
105         return inCart;
106     }
107
108     public void setInCart(String inCart) {
109         this.inCart = inCart;
110     }
111
112     public String getPermission() {
113         return permission;
114     }
115
116     public void setPermission(String permission) {
117         this.permission = permission;
118     }
119
120     public String getCreatorUserId() {
121         return creatorUserId;
122     }
123
124     public void setCreatorUserId(String creatorUserId) {
125         this.creatorUserId = creatorUserId;
126     }
127
128     @Override
129     public String toString() {
130         return "DesignInfo [vnf_type=" + vnf_type + ", vnfc_type=" + vnfc_type + ", protocol=" + protocol + ", inCart="
131                 + inCart + "]";
132     }
133
134 }