temporarily disable javadocs

This commit is contained in:
Spencer Gibb
2014-12-01 15:08:33 -07:00
parent 90c1e5750a
commit 26fc691085
2 changed files with 4 additions and 2 deletions

View File

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

View File

@@ -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