public interface URLConnectionHandlerFactory
This interface must be derived by a custom plugin class in order to implement
network communication for Omix.
A custom class implementing
A custom class implementing
URLConnectionHandlerInterface
can be registered at the Omix Plugin Manager:<URLConnectionHandlerFactory>mypackage.MyURLConnectionHandlerFactory</URLConnectionHandlerFactory>
- Since:
- Omix 1.3.11
- Author:
- Dr. Peter Droste, Omix Visualization
-
Method Summary
Modifier and Type Method Description URLConnectionHandlerInterface
newURLConnectionHandler()
This method is called by the plugin manager at startup and when the plugin is installed, respectively.
-
Method Details
-
newURLConnectionHandler
URLConnectionHandlerInterface newURLConnectionHandler()This method is called by the plugin manager at startup and when the plugin is installed, respectively. The role of this method is to create the URLConnectionHandler.
The custom implementation of this method must instantiate an arbitrary class implementing the interfaceURLConnectionHandlerInterface
.- Returns:
- an instance of
URLConnectionHandlerInterface
-