9249ac9fa82b4a8cd03cfb8ce394c58b207f0dc2
[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
18     private final String key;
19
20     public SimpleCompositeAttributeReadingStrategy(String nullableDefault, String key) {
21         super(nullableDefault);
22         this.key = key;
23     }
24
25     protected Object postprocessParsedValue(String textContent) {
26         HashMap<String,String> map = Maps.newHashMap();
27         map.put(key, textContent);
28         return map;
29     }
30
31 }