Test for YANG choices added
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-generator-impl / src / test / java / org / opendaylight / controller / sal / binding / generator / impl / MethodSignaturePattern.java
1 package org.opendaylight.controller.sal.binding.generator.impl;
2
3 public class MethodSignaturePattern {
4     final String name;
5     final String type;
6
7     public MethodSignaturePattern(String methodName, String methodType) {
8         this.name = methodName;
9         this.type = methodType;
10     }
11
12     public String getName() {
13         return this.name;
14     }
15
16     public String getType() {
17         return this.type;
18     }
19 }