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