Merge "Validate ids"
[clamp.git] / src / main / java / org / onap / clamp / clds / model / dcae / DcaeOperationStatusResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 package org.onap.clamp.clds.model.dcae;
25
26 import com.google.gson.annotations.Expose;
27
28 /**
29  * This class maps the DCAE deployment handler response to a nice pojo.
30  */
31 public class DcaeOperationStatusResponse {
32
33     @Expose
34     private String operationType;
35
36     @Expose
37     private String status;
38
39     @Expose
40     private String requestId;
41
42     @Expose
43     private String error;
44
45     @Expose
46     private DcaeLinks links;
47
48     public String getOperationType() {
49         return operationType;
50     }
51
52     public void setOperationType(String operationType) {
53         this.operationType = operationType;
54     }
55
56     public String getStatus() {
57         return status;
58     }
59
60     public void setStatus(String status) {
61         this.status = status;
62     }
63
64     public String getRequestId() {
65         return requestId;
66     }
67
68     public void setRequestId(String requestId) {
69         this.requestId = requestId;
70     }
71
72     public String getError() {
73         return error;
74     }
75
76     public void setError(String error) {
77         this.error = error;
78     }
79
80     public DcaeLinks getLinks() {
81         return links;
82     }
83
84     public void setLinks(DcaeLinks links) {
85         this.links = links;
86     }
87
88 }