Package org.kuali.rice.ksb.api.registry
Interface ServiceEndpointContract
- All Known Implementing Classes:
ServiceEndpoint,ServiceEndpoint.Builder
public interface ServiceEndpointContract
Represents a service endpoint that has been published to the service registry.
Includes a reference to both
ServiceInfoContract and
ServiceDescriptorContract instances which compose the two different
pieces of information about a service endpoint.- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
Method Summary
Modifier and TypeMethodDescriptionReturns the service descriptor for this endpoint.getInfo()Returns the service information for this endpoint.
-
Method Details
-
getInfo
ServiceInfoContract getInfo()Returns the service information for this endpoint.- Returns:
- the service information for this endpoint, should never return null
-
getDescriptor
ServiceDescriptorContract getDescriptor()Returns the service descriptor for this endpoint.- Returns:
- the service descriptor for this endpoint, should never return null
-