211dba990d551141c7099d4eb4f4fe5ef4d84053
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / fromxml / SimpleCompositeAttributeReadingStrategy.java
1 /*
2  * Copyright (c) 2015 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.config.facade.xml.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 }