Security/ Package Name changes
[portal.git] / ecomp-portal-BE-common / src / main / java / org / onap / portalapp / portal / scheduler / wrapper / 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.wrapper;
39
40 import java.io.IOException;
41 import java.util.LinkedHashMap;
42 import java.util.Map;
43
44 import org.apache.commons.lang.builder.ToStringBuilder;
45
46 import com.fasterxml.jackson.annotation.JsonInclude;
47 import com.fasterxml.jackson.annotation.JsonProperty;
48 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
49 import com.fasterxml.jackson.core.JsonProcessingException;
50 import com.fasterxml.jackson.databind.ObjectMapper;
51
52 /**
53  * This wrapper encapsulates the Scheduler response
54  */
55 @JsonInclude(JsonInclude.Include.NON_NULL)
56 @JsonPropertyOrder({ "status", "entity" })
57
58 public class SchedulerResponseWrapper {
59
60         @JsonProperty("status")
61         private int status;
62
63         @JsonProperty("entity")
64         private String entity;
65
66         @JsonProperty("entity")
67         public String getEntity() {
68                 return entity;
69         }
70
71         @JsonProperty("status")
72         public int getStatus() {
73                 return status;
74         }
75
76         @JsonProperty("status")
77         public void setStatus(int v) {
78                 this.status = v;
79         }
80
81         @JsonProperty("entity")
82         public void setEntity(String v) {
83                 this.entity = v;
84         }
85
86         @Override
87         public String toString() {
88                 return ToStringBuilder.reflectionToString(this);
89         }
90
91         public String getResponse() throws JsonProcessingException, IOException {
92                 /*
93                  * StringBuilder b = new StringBuilder ("{ \"status\": ");
94                  * 
95                  * b.append(getStatus()).append(", \"entity\": "
96                  * ).append(this.getEntity()).append("}"); return (b.toString());
97                  */
98
99                 Map<String, Object> map = new LinkedHashMap<>();
100                 map.put("status", getStatus());
101                 map.put("entity", getEntity());
102                 ObjectMapper objectMapper = new ObjectMapper();
103                 String jsonResponse = objectMapper.writeValueAsString(map);
104                 return jsonResponse;
105
106         }
107 }