Class GatewayConnectionManager
java.lang.Object
com.inductiveautomation.ignition.client.gateway_interface.GatewayConnectionManager
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic GatewayConnectionReturns the shared instance of the GatewayConnectionstatic booleanstatic voidstatic GatewayAddresstoGatewayAddress(HttpURL url) Converts an HttpURL to a GatewayAddress.static List<GatewayAddress>toGatewayAddressList(List<HttpURL> urls) Straight conversion between a list of HttpURLs and GatewayAddresses.static HttpURLtoHttpURL(GatewayAddress addr) Converts from a GatewayAddress to an HttpURL.toHttpURLList(List<GatewayAddress> addresses) Straight conversion between a list of GatewayAddresses and HttpURLs.
- 
Constructor Details- 
GatewayConnectionManagerpublic GatewayConnectionManager()
 
- 
- 
Method Details- 
getInstanceReturns the shared instance of the GatewayConnection
- 
setConnection
- 
isInitializedpublic static boolean isInitialized()
- 
toGatewayAddressConverts an HttpURL to a GatewayAddress. These classes are basically identical. HttpURL is the Ignition common representation of a gateway address, and GatewayAddress is the client bootstrap's version. Since bootstrap doesn't depend on common, they can't be consolidated.
- 
toGatewayAddressListStraight conversion between a list of HttpURLs and GatewayAddresses. SeetoGatewayAddress(HttpURL)for an explanation.
- 
toHttpURLConverts from a GatewayAddress to an HttpURL. SeetoGatewayAddress(HttpURL)for an explanation.
- 
toHttpURLListStraight conversion between a list of GatewayAddresses and HttpURLs. SeetoGatewayAddress(HttpURL)for an explanation.
 
-