Improved support for default yang statements in configuration subsystem
[controller.git] / opendaylight / netconf / config-netconf-connector / src / main / java / org / opendaylight / controller / netconf / confignetconfconnector / mapping / attributes / fromxml / SimpleCompositeAttributeReadingStrategy.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.netconf.confignetconfconnector.mapping.attributes.fromxml;
10
11 import com.google.common.collect.Maps;
12
13 import java.util.HashMap;
14
15 public class SimpleCompositeAttributeReadingStrategy extends SimpleAttributeReadingStrategy {
16
17     private final String key;
18
19     public SimpleCompositeAttributeReadingStrategy(String nullableDefault, String key) {
20         super(nullableDefault);
21         this.key = key;
22     }
23
24     protected Object postprocessParsedValue(String textContent) {
25         HashMap<String,String> map = Maps.newHashMap();
26         map.put(key, textContent);
27         return map;
28     }
29
30     @Override
31     protected Object postprocessNullableDefault(String nullableDefault) {
32         return nullableDefault == null ? null : postprocessParsedValue(nullableDefault);
33     }
34 }