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

org.openforis.web.server.ApplicationServer Maven / Gradle / Ivy

package org.openforis.web.server;

import java.io.IOException;

public interface ApplicationServer {

	void initialize() throws IOException;

	void start() throws Exception;

	void stop() throws Exception;

	boolean isRunning();

	String getUrl();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy