X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fconfig%2Fyang-test%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Fyang%2Ftest%2Fimpl%2FTestImplModule.java;h=9132407356e8b4c52ab23610079d1d189e029c8b;hb=f330b481b7f70fb165f423cc566214d1efddade8;hp=52a71620bf0062f929e2496dac32d094f66d7157;hpb=a35fe9ae149bd4c7089d48665ccc8bff580bce53;p=controller.git diff --git a/opendaylight/config/yang-test/src/main/java/org/opendaylight/controller/config/yang/test/impl/TestImplModule.java b/opendaylight/config/yang-test/src/main/java/org/opendaylight/controller/config/yang/test/impl/TestImplModule.java index 52a71620bf..9132407356 100644 --- a/opendaylight/config/yang-test/src/main/java/org/opendaylight/controller/config/yang/test/impl/TestImplModule.java +++ b/opendaylight/config/yang-test/src/main/java/org/opendaylight/controller/config/yang/test/impl/TestImplModule.java @@ -1,24 +1,23 @@ -package org.opendaylight.controller.config.yang.test.impl; - -/** +/* +* 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 */ -public final class TestImplModule extends org.opendaylight.controller.config.yang.test.impl.AbstractTestImplModule - { - +package org.opendaylight.controller.config.yang.test.impl; +public class TestImplModule extends org.opendaylight.controller.config.yang.test.impl.AbstractTestImplModule { public TestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) { super(identifier, dependencyResolver); } - public TestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, - TestImplModule oldModule, java.lang.AutoCloseable oldInstance) { - + public TestImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier, org.opendaylight.controller.config.api.DependencyResolver dependencyResolver, org.opendaylight.controller.config.yang.test.impl.TestImplModule oldModule, java.lang.AutoCloseable oldInstance) { super(identifier, dependencyResolver, oldModule, oldInstance); } @Override - protected void customValidation(){ - // Add custom validation for module attributes here. + public void customValidation() { + // add custom validation form module attributes here. } @Override @@ -28,5 +27,7 @@ public final class TestImplModule extends org.opendaylight.controller.config.yan public void close() throws Exception { } }; + } + }