Merge "Fix checkstyle warnings in yang-jmx-generator-plugin"
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / ftl / StubFactoryTemplate.java
1 /*
2  * Copyright (c) 2013 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.controller.config.yangjmxgenerator.plugin.ftl;
9
10 import com.google.common.collect.Lists;
11 import java.util.Collections;
12 import org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model.Field;
13 import org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model.Header;
14 import org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model.MethodDefinition;
15
16 public class StubFactoryTemplate extends GeneralClassTemplate {
17
18     public StubFactoryTemplate(Header header, String packageName, String name,
19                                String extendedClass) {
20         super(header, packageName, name, Lists.newArrayList(extendedClass),
21                 Collections.<String> emptyList(), Collections
22                         .<Field> emptyList(), Collections
23                         .<MethodDefinition> emptyList());
24     }
25
26 }