Class EdsServiceEndpointDetail
- java.lang.Object
-
- com.verizon.mec.edsclientsdk.data.EdsServiceEndpointDetail
-
public class EdsServiceEndpointDetail extends java.lang.Object
MEC/EDS Service Endpoint Discovery Result - Details(sub-object matches structure of underlying API result)
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
fqdn
Fully Qualified Domain Name.java.lang.String
ipv4Address
The 32-bit IPv4 address of the service endpoint.java.lang.String
ipv6Address
The 256-bit IPv6 address of the service endpoint.java.lang.Integer
port
The HTTP port to use for the service endpoint.java.lang.String
uri
Universal Resource Identifier.
-
Constructor Summary
Constructors Constructor Description EdsServiceEndpointDetail(java.lang.String uri, java.lang.String fqdn, java.lang.String ipv4Address, java.lang.String ipv6Address, java.lang.Integer port)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
For debugging / development.
-
-
-
Field Detail
-
uri
public final java.lang.String uri
Universal Resource Identifier.Not to be confused with Universal Resource Locator (URL), which is how to get to the resource identified.
-
fqdn
public final java.lang.String fqdn
Fully Qualified Domain Name.The entire URL, including http or https. In EDS service registry APIs, the customer calling the API needs to set FQDN for their edge app server endpoint.
-
ipv4Address
public final java.lang.String ipv4Address
The 32-bit IPv4 address of the service endpoint.
-
ipv6Address
public final java.lang.String ipv6Address
The 256-bit IPv6 address of the service endpoint.
-
port
public final java.lang.Integer port
The HTTP port to use for the service endpoint.
-
-