Browse Source

temporarily disable javadocs

pull/5/head
Spencer Gibb 10 years ago
parent
commit
26fc691085
  1. 2
      pom.xml
  2. 4
      src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java

2
pom.xml

@ -72,6 +72,8 @@ @@ -72,6 +72,8 @@
</dependencies>
<properties>
<!-- TODO: why does javadoc fail because of actuator dev -->
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
</project>

4
src/main/java/org/springframework/cloud/client/loadbalancer/LoadBalancerClient.java

@ -7,14 +7,14 @@ import org.springframework.cloud.client.ServiceInstance; @@ -7,14 +7,14 @@ import org.springframework.cloud.client.ServiceInstance;
*/
public interface LoadBalancerClient {
/**
* Choose a {@see ServiceInstance} from the LoadBalancer for the specified service
* Choose a ServiceInstance from the LoadBalancer for the specified service
* @param serviceId the service id to look up the LoadBalancer
* @return a ServiceInstance that matches the serviceId
*/
public ServiceInstance choose(String serviceId);
/**
* Choose a {@see ServiceInstance} from the LoadBalancer for the specified service
* Choose a ServiceInstance from the LoadBalancer for the specified service
* @param serviceId the service id to look up the LoadBalancer
* @param request allows implementations to execute pre and post actions such as incrementing metrics
* @return the result of the LoadBalancerRequest callback on the selected ServiceInstance

Loading…
Cancel
Save