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 java.util.Collection;
 
  24 import java.util.HashMap;
 
  27 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.NodeType.MULTI_INSTANCE_LEAF_NODE;
 
  28 import static org.onap.ccsdk.sli.plugins.yangserializers.pnserializer.NodeType.SINGLE_INSTANCE_LEAF_NODE;
 
  31  * Represents implementation of PropertiesNodeListener.
 
  33 public class DefaultPropertiesNodeListener implements PropertiesNodeListener {
 
  35     private Map<String, String> params = new HashMap<>();
 
  38     public void start(PropertiesNode node) {
 
  43     public void end(PropertiesNode node) {
 
  44         exitPropertiesNode(node);
 
  48     public void enterPropertiesNode(PropertiesNode node) {
 
  50          * Only if it is leaf node or leaf-list node,
 
  51          * then create a property entry and add to map
 
  53         if (node.nodeType() == SINGLE_INSTANCE_LEAF_NODE
 
  54                 || node.nodeType() == MULTI_INSTANCE_LEAF_NODE) {
 
  55             params.put(node.uri(), ((LeafNode) node).value());
 
  60     public void exitPropertiesNode(PropertiesNode node) {
 
  61         if (!node.augmentations().isEmpty()) {
 
  62             for (Map.Entry<Object, Collection<PropertiesNode>> augmentationTochild
 
  63                     : node.augmentations().asMap().entrySet()) {
 
  64                 Collection<PropertiesNode> childsFromAugmentations = augmentationTochild
 
  66                 if (!childsFromAugmentations.isEmpty()) {
 
  67                     PropertiesNodeWalker walker = new DefaultPropertiesNodeWalker<>();
 
  68                     for (PropertiesNode pNode : childsFromAugmentations) {
 
  69                         enterPropertiesNode(pNode);
 
  70                         walker.walk(this, pNode);
 
  71                         exitPropertiesNode(pNode);
 
  83     public Map<String, String> params() {
 
  90      * @param params properties
 
  92     public void params(Map<String, String> params) {