2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
 
   6  * ================================================================================
 
   7  * Licensed under the Apache License, Version 2.0 (the "License");
 
   8  * you may not use this file except in compliance with the License.
 
   9  * You may obtain a copy of the License at
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  13  * Unless required by applicable law or agreed to in writing, software
 
  14  * distributed under the License is distributed on an "AS IS" BASIS,
 
  15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16  * See the License for the specific language governing permissions and
 
  17  * limitations under the License.
 
  18  * ============LICENSE_END=========================================================
 
  21 package org.onap.ccsdk.sli.plugins.yangserializers.pnserializer;
 
  23 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
 
  25 import java.util.Collection;
 
  26 import java.util.HashMap;
 
  29 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.NodeType.MULTI_INSTANCE_LEAF_NODE;
 
  30 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.NodeType.SINGLE_INSTANCE_LEAF_NODE;
 
  33  * Represents implementation of PropertiesNodeListener.
 
  35 public class DefaultPropertiesNodeListener implements PropertiesNodeListener {
 
  37     private Map<String, String> params = new HashMap<>();
 
  40     public void start(PropertiesNode node) {
 
  45     public void end(PropertiesNode node) throws SvcLogicException {
 
  46         exitPropertiesNode(node);
 
  50     public void enterPropertiesNode(PropertiesNode node) {
 
  52          * Only if it is leaf node or leaf-list node,
 
  53          * then create a property entry and add to map
 
  55         if (node.nodeType() == SINGLE_INSTANCE_LEAF_NODE
 
  56                 || node.nodeType() == MULTI_INSTANCE_LEAF_NODE) {
 
  57             params.put(node.uri(), ((LeafNode) node).value());
 
  62     public void exitPropertiesNode(PropertiesNode node) throws
 
  64         if (!node.augmentations().isEmpty()) {
 
  65             for (Map.Entry<Object, Collection<PropertiesNode>> augmentationTochild
 
  66                     : node.augmentations().asMap().entrySet()) {
 
  67                 Collection<PropertiesNode> childsFromAugmentations = augmentationTochild
 
  69                 if (!childsFromAugmentations.isEmpty()) {
 
  70                     PropertiesNodeWalker walker = new DefaultPropertiesNodeWalker<>();
 
  71                     for (PropertiesNode pNode : childsFromAugmentations) {
 
  72                         enterPropertiesNode(pNode);
 
  73                         walker.walk(this, pNode);
 
  74                         exitPropertiesNode(pNode);
 
  86     public Map<String, String> params() {
 
  93      * @param params properties
 
  95     public void params(Map<String, String> params) {