Merge "Add Mycilla code to odlguice"
[odlguice.git] / inject / inject / src / main / java / org / opendaylight / odlguice / inject / PostFullSystemInjectionListener.java
1 /*
2  * Copyright (c) 2019 Red Hat, 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.odlguice.inject;
9
10 /**
11  * Callback invoked when dependency injection is fully complete.
12  *
13  * @author Michael Vorburger.ch
14  */
15 public interface PostFullSystemInjectionListener {
16
17     void onFullSystemInjected();
18
19 }