510c7cd9dca230b29aedce717ca044d3726e01b5
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / scheduler / SchedulerResponseWrapper.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software 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  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.onap.portalapp.portal.scheduler;
39
40 import com.fasterxml.jackson.annotation.JsonInclude;
41 import com.fasterxml.jackson.annotation.JsonProperty;
42 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
43 import com.fasterxml.jackson.core.JsonProcessingException;
44 import com.fasterxml.jackson.databind.ObjectMapper;
45
46 import java.io.IOException;
47 import java.util.LinkedHashMap;
48 import java.util.Map;
49
50 import org.apache.commons.lang.builder.ToStringBuilder;
51
52 /**
53  * This wrapper encapsulates the Scheduler response
54  */
55 @JsonInclude(JsonInclude.Include.NON_NULL)
56 @JsonPropertyOrder({
57             "status",
58             "entity",
59             "uuid"
60 })
61
62 public class SchedulerResponseWrapper {
63         
64         @JsonProperty("status")
65         private int status;
66
67         @JsonProperty("entity")
68         private String entity;
69         
70         @JsonProperty("uuid")
71         private String uuid;
72
73         @JsonProperty("entity")
74     public String getEntity() {
75         return entity;
76     }
77         
78         @JsonProperty("status")
79     public int getStatus() {
80         return status;
81     }
82         
83         @JsonProperty("uuid")
84     public String getUuid() {
85         return uuid;
86     }   
87         
88         @JsonProperty("status")
89     public void setStatus(int v) {
90         this.status = v;
91     }
92
93         @JsonProperty("entity")
94     public void setEntity(String v) {
95         this.entity = v;
96     }
97         
98         @JsonProperty("uuid")
99     public void setUuid(String v) {
100         this.uuid = v;
101     }   
102
103     @Override
104     public String toString() {
105         return ToStringBuilder.reflectionToString(this);
106     }
107
108     public String getResponse () throws JsonProcessingException,IOException {
109         Map<String, Object> map = new LinkedHashMap<>();
110                 map.put("status", getStatus());
111                 map.put("entity", getEntity());
112                 map.put("uuid", getUuid());
113                 ObjectMapper objectMapper = new ObjectMapper();
114                 String jsonResponse = objectMapper.writeValueAsString(map);
115                 return jsonResponse;
116     }
117
118 }