Checkstyle: no space inside parentheses
[odlparent.git] / bundles-test / src / main / java / org / opendaylight / odlparent / bundlestest / SystemState.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 package org.opendaylight.odlparent.bundlestest;
9
10 import org.apache.karaf.bundle.core.BundleState;
11
12 /**
13  * Karaf OSGi System State.
14  *
15  * @see BundleState
16  *
17  * @author Michael Vorburger.ch
18  */
19 public enum SystemState {
20
21     Booting,
22
23     Active,
24
25     Stopping,
26
27     Failure
28
29 }