Class GatewayAddress

java.lang.Object
com.inductiveautomation.ignition.client.launch.GatewayAddress
All Implemented Interfaces:
Serializable

public class GatewayAddress extends Object implements Serializable
Represents an Http URL, with the various segments split up. For example, the URL http://www.example.com:88/project has:
  • address = www.example.com
  • port = 88
  • path = project
See Also:
  • Field Details

    • protocol

      protected String protocol
    • address

      protected String address
    • port

      protected int port
    • path

      protected String path
  • Constructor Details

    • GatewayAddress

      public GatewayAddress(String protocol, String address, int port, String path)
  • Method Details