Merge changes Ic434bf4a,I05a3fb18,I47a3783d,I8234bbfd
[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 import java.util.HashMap;
13
14 public class SimpleCompositeAttributeReadingStrategy extends SimpleAttributeReadingStrategy {
15
16     private final String key;
17
18     public SimpleCompositeAttributeReadingStrategy(String nullableDefault, String key) {
19         super(nullableDefault);
20         this.key = key;
21     }
22
23     @Override
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 }