963352d06c3f7370cbd89140d069c5d804128274
[music.git] / src / main / java / org / onap / music / datastore / jsonobjects / JsonNotifyClientResponse.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
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  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22 package org.onap.music.datastore.jsonobjects;
23
24 import java.io.Serializable;
25
26 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
27
28 import io.swagger.annotations.ApiModel;
29
30 @ApiModel(value = "JsonNotifyClientResponse", description = "Json model for callback")
31 @JsonIgnoreProperties(ignoreUnknown = true)
32 public class JsonNotifyClientResponse implements Serializable {
33         private String message;
34     private String status;
35     
36         public String getMessage() {
37                 return message;
38         }
39         public void setMessage(String message) {
40                 this.message = message;
41         }
42         public String getStatus() {
43                 return status;
44         }
45         public void setStatus(String status) {
46                 this.status = status;
47         }
48
49         @Override
50         public String toString() {
51                 try {
52                 return new com.fasterxml.jackson.databind.ObjectMapper().writerWithDefaultPrettyPrinter().writeValueAsString(this);
53             } catch (com.fasterxml.jackson.core.JsonProcessingException e) {
54                         return message+ " : "+status;
55             }
56
57         }
58     
59 }