Uses of Class
org.apache.hadoop.registry.client.types.Endpoint
Packages that use Endpoint
Package
Description
Registry binding utility classes.
This package contains all the data types which can be saved to the registry
and/or marshalled to and from JSON.
-
Uses of Endpoint in org.apache.hadoop.registry.client.binding
Methods in org.apache.hadoop.registry.client.binding that return EndpointModifier and TypeMethodDescriptionstatic EndpointRegistryTypeUtils.inetAddrEndpoint(String api, String protocolType, String hostname, int port) Create an internet address endpoint from a list of URIsstatic EndpointRegistryTypeUtils.ipcEndpoint(String api, InetSocketAddress address) Create an IPC endpointstatic EndpointRegistryTypeUtils.restEndpoint(String api, URI... uris) Create a REST endpoint from a list of URIsstatic EndpointRegistryTypeUtils.urlEndpoint(String api, String protocolType, URI... uris) Create a URL endpoint from a list of URIsstatic EndpointRegistryTypeUtils.webEndpoint(String api, URI... uris) Create a Web UI endpoint from a list of URIsMethods in org.apache.hadoop.registry.client.binding with parameters of type EndpointModifier and TypeMethodDescriptionstatic voidRegistryTypeUtils.requireAddressType(String required, Endpoint epr) Require a specific address type on an endpointRegistryTypeUtils.retrieveAddressesUriType(Endpoint epr) Get a single URI endpointRegistryTypeUtils.retrieveAddressURLs(Endpoint epr) Get the address URLs.static voidRegistryTypeUtils.validateEndpoint(String path, Endpoint endpoint) Validate the endpoint by checking for null fields and other invalid conditions -
Uses of Endpoint in org.apache.hadoop.registry.client.types
Fields in org.apache.hadoop.registry.client.types with type parameters of type EndpointModifier and TypeFieldDescriptionServiceRecord.externalList of endpoints intended for use to external callersServiceRecord.internalList of endpoints for use within an application.Methods in org.apache.hadoop.registry.client.types that return EndpointModifier and TypeMethodDescriptionServiceRecord.getExternalEndpoint(String api) Look up an external endpointServiceRecord.getInternalEndpoint(String api) Look up an internal endpointMethods in org.apache.hadoop.registry.client.types with parameters of type EndpointModifier and TypeMethodDescriptionvoidServiceRecord.addExternalEndpoint(Endpoint endpoint) Add an external endpointvoidServiceRecord.addInternalEndpoint(Endpoint endpoint) Add an internal endpointConstructors in org.apache.hadoop.registry.client.types with parameters of type Endpoint