b0c6a4a00eaacb500ef183f6d1eda8664fac8a3a
[logging-analytics.git] / reference / slf4j-reference / src / main / java / org / onap / logging / ref / slf4j / demo / bean / Response.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.logging
4  * ================================================================================
5  * Copyright © 2018 Amdocs
6  * All rights 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 package org.onap.logging.ref.slf4j.demo.bean;
23
24 import java.util.ArrayList;
25 import java.util.List;
26
27 import org.json.JSONArray;
28 import org.json.JSONObject;
29
30 /**
31  * Test class, describing an outcome that should be reported.
32  */
33 public class Response extends  AbstractBean {
34
35     /** Delegate responses. */
36     private final List<Response> mResponses = new ArrayList<>();
37
38     /**
39      * Get delegate responses.
40      * @return responses.
41      */
42     public List<Response> getResponses() {
43         return mResponses;
44     }
45
46     /**
47      * Parse from serialized form.
48      * @param in JSON.
49      * @return parsed.
50      */
51     public static Response fromJSON(final JSONObject in) {
52         final Response request = new Response();
53         request.setCode(in.optString("code"));
54         request.setSeverity(in.optString("severity"));
55         final JSONArray responses = in.optJSONArray("responses");
56         if (responses != null) {
57             for (int i = 0 ; i < responses.length() ; i++) {
58                 request.getResponses().add(Response.fromJSON(responses.getJSONObject(i)));
59             }
60         }
61         return request;
62     }
63 }