config-manager-facade-xml: final parameters
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / toxml / SimpleUnionAttributeWritingStrategy.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.toxml;
10
11 import com.google.common.base.Preconditions;
12 import java.util.List;
13 import java.util.Map;
14 import org.opendaylight.controller.config.facade.xml.util.Util;
15 import org.w3c.dom.Document;
16
17 public class SimpleUnionAttributeWritingStrategy extends SimpleAttributeWritingStrategy {
18
19     /**
20      * @param document
21      * @param key
22      */
23     public SimpleUnionAttributeWritingStrategy(final Document document, final String key) {
24         super(document, key);
25     }
26
27     protected Object preprocess(final Object value) {
28         Util.checkType(value, Map.class);
29         Preconditions.checkArgument(((Map<?, ?>)value).size() == 1, "Unexpected number of values in %s, expected 1", value);
30         Object listOfStrings = ((Map<?, ?>) value).values().iterator().next();
31         Util.checkType(listOfStrings, List.class);
32
33         StringBuilder b = new StringBuilder();
34         for (Object character: (List<?>)listOfStrings) {
35             Util.checkType(character, String.class);
36             b.append(character);
37         }
38
39         return b.toString();
40     }
41
42 }