903475caea63a5bb70f9b5fca6159bc0442951e6
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / config / yang / md / sal / binding / impl / RpcBrokerImplModule.java
1 /*
2  * Copyright (c) 2014 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.md.sal.binding.impl;
9
10 /**
11 *
12 */
13 public final class RpcBrokerImplModule extends
14         org.opendaylight.controller.config.yang.md.sal.binding.impl.AbstractRpcBrokerImplModule {
15
16     public RpcBrokerImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
17             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver) {
18         super(identifier, dependencyResolver);
19     }
20
21     public RpcBrokerImplModule(org.opendaylight.controller.config.api.ModuleIdentifier identifier,
22             org.opendaylight.controller.config.api.DependencyResolver dependencyResolver,
23             RpcBrokerImplModule oldModule, java.lang.AutoCloseable oldInstance) {
24         super(identifier, dependencyResolver, oldModule, oldInstance);
25     }
26
27     @Override
28     public void validate() {
29         super.validate();
30         // Add custom validation for module attributes here.
31     }
32
33     @Override
34     public java.lang.AutoCloseable createInstance() {
35         // TODO:implement
36         throw new java.lang.UnsupportedOperationException("Unimplemented stub method");
37     }
38 }