Fixed missing uses of ${artifactId} in urn
[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     @Override
35     public void validate() {
36     }
37
38     @Override
39     public AutoCloseable getInstance() {
40         return instance;
41     }
42
43     @Override
44     public ModuleIdentifier getIdentifier() {
45         return id;
46     }
47
48 }