Fix compilation issues

parent 7cfbcbd9
......@@ -138,6 +138,11 @@ public class FeignLoadBalancer extends
}
@Override
public String getMethodValue() {
return getMethod().name();
}
@Override
public URI getURI() {
return RibbonRequest.this.getUri();
}
......
......@@ -60,6 +60,11 @@ public class RibbonHttpRequest extends AbstractClientHttpRequest {
}
@Override
public String getMethodValue() {
return getMethod().name();
}
@Override
public URI getURI() {
return uri;
}
......
......@@ -55,6 +55,11 @@ public abstract class ContextAwareRequest extends ClientRequest implements HttpR
}
@Override
public String getMethodValue() {
return getMethod().name();
}
@Override
public URI getURI() {
return this.getUri();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment