acf940e57bc9a8e36a4004d4f99b89eacbb65310
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / java / org / opendaylight / yangtools / sal / binding / generator / impl / NameTypePattern.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.sal.binding.generator.impl;
9
10 public class NameTypePattern {
11     final String name;
12     final String type;
13
14     public NameTypePattern(String name, String type) {
15         this.name = name;
16         this.type = type;
17     }
18
19     public String getName() {
20         return this.name;
21     }
22
23     public String getType() {
24         return this.type;
25     }
26 }