c56d0e954a1450d482dfa5409884377534370728
[openflowplugin.git] / applications / lldp-speaker / src / main / java / org / opendaylight / yang / gen / v1 / urn / opendaylight / params / xml / ns / yang / openflow / applications / lldp / speaker / rev141023 / LLDPSpeakerModule.java
1 package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflow.applications.lldp.speaker.rev141023;
2
3 import org.opendaylight.controller.config.api.DependencyResolver;
4 import org.opendaylight.controller.config.api.ModuleIdentifier;
5 import org.opendaylight.controller.sal.common.util.NoopAutoCloseable;
6
7 /**
8  * @deprecated Replaced by blueprint wiring
9  */
10 @Deprecated
11 public class LLDPSpeakerModule extends AbstractLLDPSpeakerModule {
12     public LLDPSpeakerModule(ModuleIdentifier identifier, DependencyResolver dependencyResolver) {
13         super(identifier, dependencyResolver);
14     }
15
16     public LLDPSpeakerModule(ModuleIdentifier identifier,
17             DependencyResolver dependencyResolver, LLDPSpeakerModule oldModule, AutoCloseable oldInstance) {
18         super(identifier, dependencyResolver, oldModule, oldInstance);
19     }
20
21     @Override
22     public AutoCloseable createInstance() {
23         // Instances are created via blueprint so this in a no-op.
24         return NoopAutoCloseable.INSTANCE;
25     }
26 }