0bc1760becffb2b3d99895311aa7e8f03f1c1d80
[aai/aai-common.git] / aai-schema-abstraction / src / main / java / org / onap / aai / schemaif / json / SchemaServiceResponse.java
1 /*
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2019 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2019 Amdocs
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 package org.onap.aai.schemaif.json;
22
23 import com.google.gson.Gson;
24 import com.google.gson.GsonBuilder;
25 import com.google.gson.annotations.SerializedName;
26 import org.onap.aai.schemaif.SchemaProviderException;
27 import org.onap.aai.schemaif.json.definitions.JsonSchema;
28
29 public class SchemaServiceResponse {
30     public static final String SCHEMA_TYPE_OXM = "oxm";
31     public static final String SCHEMA_TYPE_JSON = "json";
32
33     private static final Gson gson = new GsonBuilder().create();
34
35     @SerializedName("schema-version")
36     private String version;
37
38     @SerializedName("schema-content")
39     private JsonSchema data;
40
41     public String getVersion() {
42         return version;
43     }
44
45     public JsonSchema getData() {
46         return data;
47     }
48
49     public String toJson() {
50         return gson.toJson(this);
51     }
52
53     public static SchemaServiceResponse fromJson(String json) throws SchemaProviderException {
54         try {
55             if (json == null || json.isEmpty()) {
56                 throw new SchemaProviderException("Empty schema-service response");
57             }
58
59             return gson.fromJson(json, SchemaServiceResponse.class);
60         } catch (Exception ex) {
61             throw new SchemaProviderException("Invalid response from schema service: " + ex.getMessage());
62         }
63     }
64 }