Remove grocer's apostrophes

This commit is contained in:
Dave Syer
2015-03-13 09:35:54 +00:00
parent 7df3790711
commit 0ad7c65e6d

View File

@@ -21,15 +21,15 @@ import java.util.List;
import org.springframework.cloud.client.ServiceInstance;
/**
* DiscoveryClient represents operations commonly available to Discovery service
* such as Netflix Eureka or consul.io
* DiscoveryClient represents operations commonly available to Discovery service such as
* Netflix Eureka or consul.io
* @author Spencer Gibb
*/
public interface DiscoveryClient {
/**
* A human readable description of the implementation, used in HealthIndicator
* @return
* @return the description
*/
public String description();
@@ -39,14 +39,14 @@ public interface DiscoveryClient {
public ServiceInstance getLocalServiceInstance();
/**
* Get all ServiceInstance's associated with a particular serviceId
* Get all ServiceInstances associated with a particular serviceId
* @param serviceId the serviceId to query
* @return a List of ServiceInstance
*/
public List<ServiceInstance> getInstances(String serviceId);
/**
* @return all known service id's
* @return all known service ids
*/
public List<String> getServices();