X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fsal%2Fyang-prototype%2Fcode-generator%2Fmaven-yang%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fyang2sources%2Fspi%2FResourceProviderTestImpl.java;fp=opendaylight%2Fsal%2Fyang-prototype%2Fcode-generator%2Fmaven-yang%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fyang2sources%2Fspi%2FResourceProviderTestImpl.java;h=dc521841ef0e4ff0cc61a12dacf440f600871b22;hb=78718ca2980d6289703f239abb6b7928ea08c8e4;hp=0000000000000000000000000000000000000000;hpb=8e7e1c62838a9bf7057590e08226220044326e86;p=controller.git diff --git a/opendaylight/sal/yang-prototype/code-generator/maven-yang/src/test/java/org/opendaylight/controller/yang2sources/spi/ResourceProviderTestImpl.java b/opendaylight/sal/yang-prototype/code-generator/maven-yang/src/test/java/org/opendaylight/controller/yang2sources/spi/ResourceProviderTestImpl.java new file mode 100644 index 0000000000..dc521841ef --- /dev/null +++ b/opendaylight/sal/yang-prototype/code-generator/maven-yang/src/test/java/org/opendaylight/controller/yang2sources/spi/ResourceProviderTestImpl.java @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ +package org.opendaylight.controller.yang2sources.spi; + +import java.io.File; +import java.util.Collection; + +public class ResourceProviderTestImpl implements ResourceGenerator { + + @Override + public void generateResourceFiles(Collection resources, + File outputBaseDir) { + // no-op + } + +}