Merge "BUG-1382: eliminate QName.getPrefix()"
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / codec / xml / RandomPrefixInstanceIdentifierSerializer.java
1 /*
2  * Copyright (c) 2014 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.impl.codec.xml;
9
10 import java.net.URI;
11 import java.util.Map;
12
13 import org.opendaylight.yangtools.yang.common.QName;
14 import org.opendaylight.yangtools.yang.data.util.AbstractStringInstanceIdentifierCodec;
15
16 final class RandomPrefixInstanceIdentifierSerializer extends AbstractStringInstanceIdentifierCodec {
17     private final RandomPrefix prefixes = new RandomPrefix();
18
19     Iterable<Map.Entry<URI, String>> getPrefixes() {
20         return prefixes.getPrefixes();
21     }
22
23     @Override
24     protected String prefixForNamespace(final URI namespace) {
25         return prefixes.encodePrefix(namespace);
26     }
27
28     @Override
29     protected QName createQName(final String prefix, final String localName) {
30         throw new UnsupportedOperationException("Not implemented");
31     }
32
33 }