Update license date and text
[aai/champ.git] / champ-service / src / main / java / org / onap / champ / entity / ChampRelationshipDeserializer.java
1 /**
2  * ============LICENSE_START==========================================
3  * org.onap.aai
4  * ===================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 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.champ.entity;
22
23 import java.io.IOException;
24 import java.util.HashMap;
25 import java.util.Map;
26 import com.fasterxml.jackson.core.JsonParser;
27 import com.fasterxml.jackson.core.JsonProcessingException;
28 import com.fasterxml.jackson.databind.DeserializationContext;
29 import com.fasterxml.jackson.databind.JsonNode;
30 import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
31
32 import org.onap.aai.champcore.model.ChampObject;
33 import org.onap.aai.champcore.model.ChampRelationship;
34
35 public class ChampRelationshipDeserializer extends StdDeserializer<ChampRelationship> {
36
37     private static final long serialVersionUID = -3625275249560680339L;
38
39     public ChampRelationshipDeserializer() {
40         this(null);
41     }
42
43     protected ChampRelationshipDeserializer(Class<ChampRelationship> t) {
44         super(t);
45     }
46
47     public ChampRelationship deserialize(JsonParser jparser, DeserializationContext dctx)
48             throws IOException, JsonProcessingException {
49
50         JsonNode node = jparser.getCodec().readTree(jparser);
51         JsonNode type = node.get("type");
52         JsonNode key = node.get("key");
53         Map<String, Object> props = new HashMap<>();
54         JsonNode propNode = node.get("properties");
55         propNode.fields().forEachRemaining((x)->props.put(x.getKey(), x.getValue().asText()));
56
57         JsonNode srcNode = node.get("source");
58         JsonNode targetNode = node.get("target");
59
60         ChampObject src = jparser.getCodec ().treeToValue ( srcNode, ChampObject.class );
61         ChampObject target = jparser.getCodec ().treeToValue ( targetNode, ChampObject.class );
62
63         ChampRelationship.Builder builder = new ChampRelationship.Builder(src, target, type.asText()).properties(props);
64
65         if(key != null){
66             builder.key(key.asText());
67         }
68
69         return builder.build();
70     }
71
72 }