42db6cbd52488132c65d57419235e5d2c186f12b
[bgpcep.git] / pcep / ietf-stateful07 / src / main / java / org / opendaylight / controller / config / yang / pcep / stateful07 / cfg / SyncOptimizationsPCEPParserModule.java
1 /*
2  * Copyright (c) 2015 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.yang.pcep.stateful07.cfg;
9
10 import org.opendaylight.controller.config.api.DependencyResolver;
11 import org.opendaylight.controller.config.api.ModuleIdentifier;
12 import org.opendaylight.protocol.pcep.ietf.stateful07.StatefulActivator;
13
14 public class SyncOptimizationsPCEPParserModule extends AbstractSyncOptimizationsPCEPParserModule {
15
16     public SyncOptimizationsPCEPParserModule(final ModuleIdentifier identifier, final DependencyResolver dependencyResolver) {
17         super(identifier, dependencyResolver);
18     }
19
20     public SyncOptimizationsPCEPParserModule(final ModuleIdentifier identifier, final DependencyResolver dependencyResolver,
21         final SyncOptimizationsPCEPParserModule oldModule, final java.lang.AutoCloseable oldInstance) {
22         super(identifier, dependencyResolver, oldModule, oldInstance);
23     }
24
25     @Override
26     protected AutoCloseable createInstance() {
27         return new StatefulActivator();
28     }
29
30 }