added implementation of Identifier and Identifiable from yangtools.concepts
[controller.git] / opendaylight / config / config-api / src / main / java / org / opendaylight / controller / config / spi / Module.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.spi;
9
10 import javax.annotation.concurrent.NotThreadSafe;
11
12 import org.opendaylight.controller.config.api.ModuleIdentifier;
13 import org.opendaylight.controller.config.api.annotations.RequireInterface;
14 import org.opendaylight.yangtools.concepts.Identifiable;
15
16
17 /**
18  * Represents one service that is to be configured. These methods need to be
19  * implemented in addition to the usual attribute getters/setters. Dependencies
20  * should always be injected as ObjectName references to the corresponding
21  * ConfigBeans.
22  * <p>
23  * In order to guide dependency resolution, the setter method should be
24  * annotated with {@link RequireInterface}.
25  * </p>
26  * <p>
27  * Thread safety note: implementations of this interface are not required to be
28  * thread safe as thread safety is enforced by configuration manager.
29  * </p>
30  */
31 @NotThreadSafe
32 public interface Module extends Identifiable<ModuleIdentifier>{
33     /**
34      * This method will be called as first phase in two phase commit. Instance
35      * can check attributes, but is not allowed to do any kind of work that
36      * could leave any resources open. It is prohibited to call
37      * {@link #getInstance()} on dependent {@link Module} because it would
38      * destroy separation between validation and commit phase.
39      *
40      */
41     void validate();
42
43     /**
44      * Returns 'live' object that was configured using this object. It is
45      * allowed to call this method only after all ConfigBeans were validated. In
46      * this method new resources might be opened or old instance might be
47      * modified. Note that when obtaining dependent Module using
48      * {@link org.opendaylight.controller.config.api.DependencyResolver#validateDependency(Class, javax.management.ObjectName, String)}
49      * a proxy will be created that will disallow calling this method before
50      * second commit phase begins.
51      *
52      * @return closeable instance: After bundle update the factory might be able
53      *         to copy old configuration into new one without being able to cast
54      *         Module or the instance. Thus to clean up old instance, it will
55      *         call close().
56      */
57     AutoCloseable getInstance();
58
59 }