aboutsummaryrefslogtreecommitdiff
path: root/stub
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2017-07-27 18:07:18 -0700
committerGitHub <noreply@github.com>2017-07-27 18:07:18 -0700
commit9be41ba0e84d85b9c9a96992d8158c2e95cb3050 (patch)
treeee8a24889a5cbcfc23e5178ae637160f862ee6c9 /stub
parent3efaccd81ff47a46400badcd51a8abf39c9262f8 (diff)
downloadgrpc-grpc-java-9be41ba0e84d85b9c9a96992d8158c2e95cb3050.tar.gz
core,auth: Stabilize auth flow using CallCredentials
As discussed in #1914, we need CallCredentials and MoreCallCredentials to be stable, but there's less of a strong need for the contents of CallCredentials to be stable. We're willing to commit to the name, without needing to commit to the plumbing.
Diffstat (limited to 'stub')
-rw-r--r--stub/src/main/java/io/grpc/stub/AbstractStub.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/stub/src/main/java/io/grpc/stub/AbstractStub.java b/stub/src/main/java/io/grpc/stub/AbstractStub.java
index 3b3e61310..c33fa0821 100644
--- a/stub/src/main/java/io/grpc/stub/AbstractStub.java
+++ b/stub/src/main/java/io/grpc/stub/AbstractStub.java
@@ -173,7 +173,6 @@ public abstract class AbstractStub<S extends AbstractStub<S>> {
*
* @since 1.0.0
*/
- @ExperimentalApi("https//github.com/grpc/grpc-java/issues/1914")
public final S withCallCredentials(CallCredentials credentials) {
return build(channel, callOptions.withCallCredentials(credentials));
}