3cbbd88b17b8421ec5996b50813bb672059e1ae5
[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-2018 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  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.design.data;
25
26 import com.fasterxml.jackson.annotation.JsonProperty;
27
28 public class DesignInfo{
29     
30     @JsonProperty("vnf-type")
31     String vnf_type;
32     
33     @JsonProperty("vnfc-type")
34     String vnfc_type;
35     
36     @JsonProperty("protocol")
37     String protocol;
38     
39     @JsonProperty("incart")
40     String inCart;
41     
42     @JsonProperty("action")
43     String action;
44     
45     @JsonProperty("artifact-name")
46     String artifact_name;
47
48     
49     @JsonProperty("artifact-type")
50     String artifact_type;
51
52     public String getArtifact_type() {
53         return artifact_type;
54     }
55
56     public void setArtifact_type(String artifact_type) {
57         this.artifact_type = artifact_type;
58     }
59
60     public String getArtifact_name() {
61         return artifact_name;
62     }
63
64     public void setArtifact_name(String artifact_name) {
65         this.artifact_name = artifact_name;
66     }
67
68     public String getAction() {
69         return action;
70     }
71
72     public void setAction(String action) {
73         this.action = action;
74     }
75
76     public String getVnf_type() {
77         return vnf_type;
78     }
79
80     public void setVnf_type(String vnf_type) {
81         this.vnf_type = vnf_type;
82     }
83
84     public String getVnfc_type() {
85         return vnfc_type;
86     }
87
88     public void setVnfc_type(String vnfc_type) {
89         this.vnfc_type = vnfc_type;
90     }
91
92     public String getProtocol() {
93         return protocol;
94     }
95
96     public void setProtocol(String protocol) {
97         this.protocol = protocol;
98     }
99
100     public String getInCart() {
101         return inCart;
102     }
103
104     public void setInCart(String inCart) {
105         this.inCart = inCart;
106     }
107
108     @Override
109     public String toString() {
110         return "DesignInfo [vnf_type=" + vnf_type + ", vnfc_type=" + vnfc_type + ", protocol=" + protocol + ", inCart="
111                 + inCart + "]";
112     }
113     
114 }