2 * ============LICENSE_START=======================================================
3 * ONAP : ccsdk features
4 * ================================================================================
5 * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
22 package org.onap.ccsdk.features.sdnr.wt.dataprovider.yangtools.serialize;
24 import com.fasterxml.jackson.core.JsonParser;
25 import com.fasterxml.jackson.core.JsonProcessingException;
26 import com.fasterxml.jackson.databind.DeserializationContext;
27 import com.fasterxml.jackson.databind.JsonDeserializer;
28 import java.io.IOException;
29 import org.onap.ccsdk.features.sdnr.wt.dataprovider.yangtools.YangToolsMapperHelper;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
33 public class BaseIdentityDeserializer<T> extends JsonDeserializer<T> {
35 private static final Logger LOG = LoggerFactory.getLogger(BaseIdentityDeserializer.class);
36 private final JsonDeserializer<?> deser;
38 public BaseIdentityDeserializer(final JsonDeserializer<?> deser) {
42 @SuppressWarnings("unchecked")
44 public T deserialize(JsonParser parser, DeserializationContext ctxt) throws IOException, JsonProcessingException {
45 LOG.debug("BaseIdentityDeserializer class for '{}'",parser.getValueAsString());
46 String clazzToSearch = parser.getValueAsString();
47 // clazz from Elasticsearch is full qualified
48 int lastDot = clazzToSearch.lastIndexOf(".");
50 clazzToSearch = clazzToSearch.substring(lastDot+1);
52 clazzToSearch = clazzToSearch.substring(0, 1).toUpperCase() + clazzToSearch.substring(1);
56 clazz = YangToolsMapperHelper.findClass(clazzToSearch);
59 } catch (ClassNotFoundException e) {
60 LOG.warn("BaseIdentityDeserializer class not found for '"+parser.getValueAsString()+"'",e);
62 return (T) deser.deserialize(parser, ctxt);