Initial code drop of yang model driven configuration system
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / impl / AbstractMockedModule.java
1 /*
2  * Copyright (c) 2013 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.manager.impl;
9
10 import org.opendaylight.controller.config.api.DynamicMBeanWithInstance;
11 import org.opendaylight.controller.config.api.ModuleIdentifier;
12 import org.opendaylight.controller.config.spi.Module;
13
14 public abstract class AbstractMockedModule implements Module {
15
16     protected final AutoCloseable instance;
17
18     public AbstractMockedModule() throws Exception {
19         instance = prepareMockedInstance();
20     }
21
22     protected abstract AutoCloseable prepareMockedInstance() throws Exception;
23
24     public AbstractMockedModule(DynamicMBeanWithInstance old) {
25         instance = old.getInstance();
26     }
27
28     @Override
29     public void validate() {
30     }
31
32     @Override
33     public AutoCloseable getInstance() {
34         return instance;
35     }
36
37     @Override
38     public ModuleIdentifier getName() {
39         return new ModuleIdentifier(getClass().getCanonicalName(), "mock");
40     }
41
42 }