NetConf test tool improved so now it can be
[netconf.git] / netconf / tools / netconf-testtool / src / main / java / org / opendaylight / netconf / test / tool / schemacache / ModelData.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.netconf.test.tool.schemacache;
9
10 import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
11
12 public class ModelData {
13
14     private SourceIdentifier id;
15     private String path;
16
17     public ModelData(SourceIdentifier id, String path) {
18         this.id = id;
19         this.path = path;
20     }
21
22     public SourceIdentifier getId() {
23         return id;
24     }
25
26     public String getPath() {
27         return path;
28     }
29 }