blob: a09cd4801b6eb3156d8dd7ad9d833cc8077b71ec [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2012, 2014 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Bernd Hufmann - Initial API and implementation
**********************************************************************/
package org.eclipse.tracecompass.internal.lttng2.control.core.model;
/**
* <p>
* Enumeration for the node connection state.
* </p>
*
* @author Bernd Hufmann
*/
public enum TargetNodeState {
/** State when disconnected */
DISCONNECTED,
/** State while disconnecting */
DISCONNECTING,
/** State when connected */
CONNECTED,
/** State while connecting */
CONNECTING;
}