0356b29c008b4fe9f8928191494c76f53038a034
[yangtools.git] / codec / yang-data-codec-xml / src / main / java / org / opendaylight / yangtools / yang / data / codec / xml / QuotedXmlCodec.java
1 /*
2  * Copyright (c) 2016 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 package org.opendaylight.yangtools.yang.data.codec.xml;
9
10 import javax.xml.stream.XMLStreamException;
11 import javax.xml.stream.XMLStreamWriter;
12 import org.opendaylight.yangtools.yang.data.impl.codec.DataStringCodec;
13
14 final class QuotedXmlCodec<T> extends AbstractXmlCodec<T> {
15     QuotedXmlCodec(final DataStringCodec<T> codec) {
16         super(codec);
17     }
18
19     @Override
20     public void writeValue(final XMLStreamWriter ctx, final T value) throws XMLStreamException {
21         ctx.writeCharacters(serialize(value));
22     }
23 }