c8e218aae820be68d9f611b3115dc9dac5572e95
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / mapping / attributes / toxml / SimpleAttributeWritingStrategy.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.Optional;
12 import org.opendaylight.controller.config.facade.xml.util.Util;
13 import org.opendaylight.controller.config.util.xml.XmlUtil;
14 import org.w3c.dom.Document;
15 import org.w3c.dom.Element;
16
17 public class SimpleAttributeWritingStrategy implements AttributeWritingStrategy {
18
19     private final Document document;
20     private final String key;
21
22     /**
23      * @param document
24      * @param key
25      */
26     public SimpleAttributeWritingStrategy(final Document document, final String key) {
27         this.document = document;
28         this.key = key;
29     }
30
31     @Override
32     public void writeElement(final Element parentElement, final String namespace, Object value) {
33         value = preprocess(value);
34         Util.checkType(value, String.class);
35         Element innerNode = createElement(document, key, (String) value, Optional.of(namespace));
36         parentElement.appendChild(innerNode);
37     }
38
39     protected Element createElement(final Document document, final String key, final String value, final Optional<String> namespace) {
40         Element typeElement = XmlUtil.createElement(document, key, namespace);
41
42         typeElement.appendChild(document.createTextNode(value));
43         return typeElement;
44     }
45     protected Object preprocess(final Object value) {
46         return value;
47     }
48
49
50 }