blob: 0569e97e51f2c851932019d179eb9276f8f817ae [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.osam.policy;
24
25import com.fasterxml.jackson.annotation.JsonInclude;
26import com.fasterxml.jackson.annotation.JsonProperty;
27import com.fasterxml.jackson.annotation.JsonPropertyOrder;
28import org.apache.commons.lang.builder.ToStringBuilder;
29
30@JsonInclude(JsonInclude.Include.NON_NULL)
31@JsonPropertyOrder({
32 "status",
33 "entity"
34})
35
36public class PolicyResponseWrapper {
37
38 @JsonProperty("status")
39 private int status;
40
41 @JsonProperty("entity")
42 private String entity;
43
44 @JsonProperty("entity")
45 public String getEntity() {
46 return entity;
47 }
48
49 @JsonProperty("status")
50 public int getStatus() {
51 return status;
52 }
53
54 @JsonProperty("status")
55 public void setStatus(int v) {
56 this.status = v;
57 }
58
59 @JsonProperty("entity")
60 public void setEntity(String v) {
61 this.entity = v;
62 }
63
64 @Override
65 public String toString() {
66 return ToStringBuilder.reflectionToString(this);
67 }
68
69 public String getResponse () {
70
71 StringBuilder b = new StringBuilder ("{ \"status\": ");
72 b.append(getStatus()).append(", \"entity\": " ).append(this.getEntity()).append("}");
73 return (b.toString());
74 }
75}