blob: 76545726a19b0f4423fc052f76dcc2f16e06591d [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2013, 2017 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.rj.servi.jmx;
import java.util.Date;
import javax.management.OperationsException;
public interface NodeMXBean {
String getId();
Date getCreationTime();
NodeStateMX getState();
boolean isConsoleEnabled();
void setConsoleEnabled(boolean enable) throws OperationsException;
@DisplayName("Stop using the default timeout")
void stop() throws OperationsException;
@DisplayName("Stop using given timeout")
void stop(long timeoutMillis) throws OperationsException;
@DisplayName("Stop using timeout 0")
void kill() throws OperationsException;
}