Update license header in appc-inbound files
[appc.git] / appc-inbound / appc-design-services / provider / src / main / java / org / onap / appc / design / data / StatusInfo.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 StatusInfo{
29     
30     @JsonProperty("vnf-type")
31     String vnf_type;
32     
33     @JsonProperty("vnfc-type")
34     String vnfc_type;
35     
36     @JsonProperty("action")
37     String action;
38     
39     @JsonProperty("artifact-status")
40     String artifact_status;
41
42     @JsonProperty("action-status")
43     String action_status;
44     
45     public String getVnf_type() {
46         return vnf_type;
47     }
48
49     public void setVnf_type(String vnf_type) {
50         this.vnf_type = vnf_type;
51     }
52
53     public String getVnfc_type() {
54         return vnfc_type;
55     }
56
57     public void setVnfc_type(String vnfc_type) {
58         this.vnfc_type = vnfc_type;
59     }
60
61     public String getAction() {
62         return action;
63     }
64
65     public void setAction(String action) {
66         this.action = action;
67     }
68
69     public String getArtifact_status() {
70         return artifact_status;
71     }
72
73     public void setArtifact_status(String artifact_status) {
74         this.artifact_status = artifact_status;
75     }
76
77     public String getAction_status() {
78         return action_status;
79     }
80
81     public void setAction_status(String action_status) {
82         this.action_status = action_status;
83     }
84
85 }