Fix build faliures due to OFPlugin checktyle fixes
[netvirt.git] / statemanager / impl / src / main / java / org / opendaylight / netvirt / statemanager / IStateManager.java
1 /*
2  * Copyright (c) 2016 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
9 package org.opendaylight.netvirt.statemanager;
10
11 public interface IStateManager {
12     /**
13      * This method is used to indicate if all netvirt services have been started
14      * and netvirt is ready.
15      *
16      * @param ready indicates the netvirt readiness
17      */
18     void setReady(boolean ready);
19 }