diff --git a/core/src/main/java/io/grpc/NameResolver.java b/core/src/main/java/io/grpc/NameResolver.java index c188eca0d9a..3d8bd5243aa 100644 --- a/core/src/main/java/io/grpc/NameResolver.java +++ b/core/src/main/java/io/grpc/NameResolver.java @@ -209,17 +209,23 @@ void onAddresses( /** * A utility object passed to {@link Factory#newNameResolver(URI, NameResolver.Helper)}. + * + * @since 1.19.0 */ public abstract static class Helper { /** * The port number used in case the target or the underlying naming system doesn't provide a * port number. + * + * @since 1.19.0 */ public abstract int getDefaultPort(); /** * If the NameResolver wants to support proxy, it should inquire this {@link ProxyDetector}. * See documentation on {@link ProxyDetector} about how proxies work in gRPC. + * + * @since 1.19.0 */ public abstract ProxyDetector getProxyDetector(); }