/*- * ============LICENSE_START======================================================= * ONAP - CCSDK * ================================================================================ * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============LICENSE_END========================================================= */ package org.onap.ccsdk.sli.plugins.yangserializers.pnserializer; import org.opendaylight.yangtools.yang.model.api.SchemaContext; import org.opendaylight.yangtools.yang.model.api.SchemaNode; import org.slf4j.Logger; import java.util.Map; import static org.slf4j.LoggerFactory.getLogger; /** * Representation of mdsal based properties node serializer implementation. */ public class MdsalPropertiesNodeSerializer extends PropertiesNodeSerializer { private SchemaNode curSchema; private PropertiesNode node; private static final Logger LOG = getLogger(MdsalPropertiesNodeSerializer.class); /** * Creates the properties node serializer. * * @param schemaNode schema node. * @param schemaCtx schema context * @param uri URL of the request */ public MdsalPropertiesNodeSerializer(SchemaNode schemaNode, SchemaContext schemaCtx, String uri) { super(schemaNode, schemaCtx, uri); } @Override public PropertiesNode encode(Map paramMap) { return null; } @Override public Map decode(PropertiesNode propertiesNode) { return null; } }