Merge "Implementation of ModuleShardStrategy"
[controller.git] / opendaylight / netconf / config-netconf-connector / src / main / java / org / opendaylight / controller / netconf / confignetconfconnector / mapping / attributes / toxml / SimpleIdentityRefAttributeWritingStrategy.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.toxml;
10
11 import java.util.Map;
12
13 import org.opendaylight.controller.netconf.confignetconfconnector.util.Util;
14 import org.opendaylight.controller.netconf.util.xml.XmlUtil;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.w3c.dom.Document;
17 import org.w3c.dom.Element;
18
19 import com.google.common.base.Optional;
20 import com.google.common.base.Preconditions;
21
22 public class SimpleIdentityRefAttributeWritingStrategy extends SimpleAttributeWritingStrategy {
23
24     private static final String PREFIX = "prefix";
25
26     /**
27      * @param document
28      * @param key
29      */
30     public SimpleIdentityRefAttributeWritingStrategy(Document document, String key) {
31         super(document, key);
32     }
33
34     protected Object preprocess(Object value) {
35         Util.checkType(value, Map.class);
36         Preconditions.checkArgument(((Map)value).size() == 1, "Unexpected number of values in %s, expected 1", value);
37         Object stringValue = ((Map) value).values().iterator().next();
38         Util.checkType(stringValue, String.class);
39
40         return stringValue;
41     }
42
43     @Override
44     protected Element createElement(Document doc, String key, String value, Optional<String> namespace) {
45         QName qName = QName.create(value);
46         String identityValue = qName.getLocalName();
47         String identityNamespace = qName.getNamespace().toString();
48         return XmlUtil.createTextElementWithNamespacedContent(doc, key, PREFIX, identityNamespace, identityValue, namespace);
49     }
50 }