Interface VerifyChallengeRequestOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
VerifyChallengeRequest, VerifyChallengeRequest.Builder

@Generated public interface VerifyChallengeRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    com.google.protobuf.ByteString
    The nonce challenge response, which should have been obtained from processing the result of an earlier getNonce rpc request by the client on the server receiving this request ("this" server)
    the client id for the client making the originating request
    the client id for the client making the originating request
    com.google.protobuf.ByteString
    the public key.
    com.google.protobuf.ByteString
    the ip address of the server making the request on behalf of a client
    the credentials desired.
    the credentials desired.
    boolean
    the client id for the client making the originating request
    boolean
    the credentials desired.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getServerIpAddress

      com.google.protobuf.ByteString getServerIpAddress()
       the ip address of the server making the request on behalf of a client
       
      bytes server_ip_address = 1;
      Returns:
      The serverIpAddress.
    • hasClientId

      boolean hasClientId()
       the client id for the client making the originating request
       
      .io.deephaven.proto.auth.ClientId client_id = 2;
      Returns:
      Whether the clientId field is set.
    • getClientId

      ClientId getClientId()
       the client id for the client making the originating request
       
      .io.deephaven.proto.auth.ClientId client_id = 2;
      Returns:
      The clientId.
    • getClientIdOrBuilder

      ClientIdOrBuilder getClientIdOrBuilder()
       the client id for the client making the originating request
       
      .io.deephaven.proto.auth.ClientId client_id = 2;
    • hasUserContext

      boolean hasUserContext()
       the credentials desired.
       
      .io.deephaven.proto.auth.UserContext user_context = 3;
      Returns:
      Whether the userContext field is set.
    • getUserContext

      UserContext getUserContext()
       the credentials desired.
       
      .io.deephaven.proto.auth.UserContext user_context = 3;
      Returns:
      The userContext.
    • getUserContextOrBuilder

      UserContextOrBuilder getUserContextOrBuilder()
       the credentials desired.
       
      .io.deephaven.proto.auth.UserContext user_context = 3;
    • getPublicKey

      com.google.protobuf.ByteString getPublicKey()
       the public key.
       
      bytes public_key = 4;
      Returns:
      The publicKey.
    • getChallengeResponse

      com.google.protobuf.ByteString getChallengeResponse()
       The nonce challenge response, which should have been obtained from processing
       the result of an earlier getNonce rpc request by the client
       on the server receiving this request ("this" server)
       
      bytes challenge_response = 5;
      Returns:
      The challengeResponse.