All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jolokia.mule.MuleAgentHttpServer Maven / Gradle / Ivy

There is a newer version: 1.7.2
Show newest version
package org.jolokia.mule;

import org.mule.api.lifecycle.StartException;
import org.mule.api.lifecycle.StopException;

/**
 * Internal HTTP server interface For Mule Agent.
 * 
 * 
 * @author Michio Nakagawa
 * @since 10.10.14
 */
public interface MuleAgentHttpServer {

	/**
	 * Startup the internal HTTP server
	 *
	 *
	 * @throws StartException if starting fails
	 */
	void start() throws StartException;

	/**
	 * Stop the internal HTTP server
	 *
	 *
	 * @throws StopException when stopping fails
	 */
	void stop() throws StopException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy