Merge "Remove unnecessary declaration of <prerequisites> in protocol-framework"
[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     private final ModuleIdentifier id;
18
19     protected abstract AutoCloseable prepareMockedInstance() throws Exception;
20
21     public AbstractMockedModule(DynamicMBeanWithInstance old, ModuleIdentifier id) {
22         if(old!=null)
23             instance = old.getInstance();
24         else
25             try {
26                 instance = prepareMockedInstance();
27             } catch (Exception e) {
28                 throw new RuntimeException(e);
29             }
30
31         this.id = id==null ? new ModuleIdentifier(getClass().getCanonicalName(), "mock") : id;
32     }
33
34
35     @Override
36     public boolean canReuse(Module oldModule) {
37         return instance!=null;
38     }
39
40     @Override
41     public void validate() {
42     }
43
44     @Override
45     public AutoCloseable getInstance() {
46         return instance;
47     }
48
49     @Override
50     public ModuleIdentifier getIdentifier() {
51         return id;
52     }
53
54 }