blob: 6adb4b130768cbe121c67e6d1e7cab2bc00977ae [file] [log] [blame]
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.karaf.management.mbeans.dev;
import java.util.List;
/**
* MBean providing dev actions.
*/
public interface DevMBean {
/**
* Get the current OSGi framework in use.
*
* @return the name of the OSGi framework in use.
* @throws Exception
*/
String framework() throws Exception;
/**
* OSGi framework options.
*
* @param debug enable debug of the OSGi framework to use.
* @param framework name of the OSGI framework to use.
* @throws Exception
*/
void frameworkOptions(boolean debug, String framework) throws Exception;
/**
* Restart Karaf, with eventually a cleanup.
*
* @param clean if true, Karaf is cleanup, false else.
* @throws Exception
*/
void restart(boolean clean) throws Exception;
}