Uses of Class
io.grpc.CallCredentials
-
Packages that use CallCredentials Package Description io.grpc The gRPC core public API.io.grpc.auth Implementations ofCallCredentials
and authentication related API.io.grpc.stub API for the Stub layer. -
-
Uses of CallCredentials in io.grpc
Subclasses of CallCredentials in io.grpc Modifier and Type Class Description class
CompositeCallCredentials
Uses multipleCallCredentials
as if they were one.Methods in io.grpc that return CallCredentials Modifier and Type Method Description CallCredentials
CompositeChannelCredentials. getCallCredentials()
CallCredentials
CallOptions. getCredentials()
Returns the call credentials.Methods in io.grpc with parameters of type CallCredentials Modifier and Type Method Description static ChannelCredentials
CompositeChannelCredentials. create(ChannelCredentials channelCreds, CallCredentials callCreds)
CallOptions
CallOptions. withCallCredentials(CallCredentials credentials)
Returns a newCallOptions
with the given call credentials.Constructors in io.grpc with parameters of type CallCredentials Constructor Description CompositeCallCredentials(CallCredentials creds1, CallCredentials creds2)
-
Uses of CallCredentials in io.grpc.auth
Methods in io.grpc.auth that return CallCredentials Modifier and Type Method Description static CallCredentials
MoreCallCredentials. from(com.google.auth.Credentials creds)
Converts a Google Auth LibraryCredentials
toCallCredentials
. -
Uses of CallCredentials in io.grpc.stub
Methods in io.grpc.stub with parameters of type CallCredentials Modifier and Type Method Description S
AbstractStub. withCallCredentials(CallCredentials credentials)
Returns a new stub that uses the given call credentials.
-