Remove yang-maven-plugin interfaces
[yangtools.git] / plugin / plugin-generator-api / src / test / java / org / opendaylight / yangtools / plugin / generator / api / TestFileGeneratorFactory.java
1 /*
2  * Copyright (c) 2020 PANTHEON.tech, s.r.o. 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.plugin.generator.api;
9
10 import java.util.Map;
11 import org.eclipse.jdt.annotation.NonNullByDefault;
12 import org.kohsuke.MetaInfServices;
13
14 @MetaInfServices(value = FileGeneratorFactory.class)
15 @NonNullByDefault
16 public final class TestFileGeneratorFactory extends AbstractFileGeneratorFactory {
17     public static final String PREFIX = "prefix";
18
19     public TestFileGeneratorFactory() {
20         super(TestFileGenerator.class.getName());
21     }
22
23     @Override
24     public FileGenerator newFileGenerator(final Map<String, String> configuration) {
25         return new TestFileGenerator(configuration.get(PREFIX));
26     }
27 }