HostTracker Bundle Separation
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / utils / IListener.java
1 /*
2  * Copyright (c) 2011 Big Switch Networks, Inc.
3  *
4  * Licensed under the Eclipse Public License, Version 1.0 (the
5  * "License"); you may not use this file except in compliance with the
6  * License. You may obtain a copy of the License at
7  *
8  *      http://www.eclipse.org/legal/epl-v10.html
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13  * implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  *
16  * This file incorporates work covered by the following copyright and
17  * permission notice:
18  *
19  *    Originally created by David Erickson, Stanford University
20  *
21  *    Licensed under the Apache License, Version 2.0 (the "License");
22  *    you may not use this file except in compliance with the
23  *    License. You may obtain a copy of the License at
24  *
25  *         http://www.apache.org/licenses/LICENSE-2.0
26  *
27  *    Unless required by applicable law or agreed to in writing,
28  *    software distributed under the License is distributed on an "AS
29  *    IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
30  *    express or implied. See the License for the specific language
31  *    governing permissions and limitations under the License.
32  */
33
34 package org.opendaylight.controller.sal.utils;
35
36 public interface IListener<T> {
37     public enum Command {
38         CONTINUE, STOP
39     }
40
41     /**
42      * The name assigned to this listener
43      *
44      * @return
45      */
46     public String getName();
47
48     /**
49      * Check if the module called name is a callback ordering prerequisite for
50      * this module. In other words, if this function returns true for the given
51      * name, then this listener will be called after that message listener.
52      *
53      * @param type
54      *            the object type to which this applies
55      * @param name
56      *            the name of the module
57      * @return whether name is a prerequisite.
58      */
59     public boolean isCallbackOrderingPrereq(T type, String name);
60
61     /**
62      * Check if the module called name is a callback ordering post-requisite for
63      * this module. In other words, if this function returns true for the given
64      * name, then this listener will be called before that message listener.
65      *
66      * @param type
67      *            the object type to which this applies
68      * @param name
69      *            the name of the module
70      * @return whether name is a post-requisite.
71      */
72     public boolean isCallbackOrderingPostreq(T type, String name);
73 }