b10d834dd5cbf0fe3ec111fd06a0df865e2906b1
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / datastore / node / utils / NodeIdentifierGenerator.java
1 /*
2  * Copyright (c) 2014, 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.cluster.datastore.node.utils;
10
11 import org.opendaylight.yangtools.yang.common.QName;
12 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
13
14 public class NodeIdentifierGenerator {
15     private final QName qname;
16
17     public NodeIdentifierGenerator(String id) {
18         this.qname = QNameFactory.create(id);
19     }
20
21     public YangInstanceIdentifier.PathArgument getArgument() {
22         return new YangInstanceIdentifier.NodeIdentifier(qname);
23     }
24 }