Class GatewayAddress
java.lang.Object
com.inductiveautomation.ignition.client.launch.GatewayAddress
- All Implemented Interfaces:
- 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 SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleangetPath()intgetPort()inthashCode()static GatewayAddressParses a string like "localhost:80/test" into a GatewayAddressReturns the address in a format that parse() would accept, namely "host:http:https/path"toString()
- 
Field Details- 
protocol
- 
address
- 
portprotected int port
- 
path
 
- 
- 
Constructor Details- 
GatewayAddress
 
- 
- 
Method Details- 
toParseableStringReturns the address in a format that parse() would accept, namely "host:http:https/path"
- 
parseParses a string like "localhost:80/test" into a GatewayAddress- Throws:
- IllegalArgumentException
 
- 
getAddress
- 
getProtocol
- 
getPath
- 
toString
- 
getPortpublic int getPort()
- 
hashCodepublic int hashCode()
- 
equals
 
-